IDAX.PBINOM_H - High-tail cumulative binomial distribution

The PBINOM_H function returns the probability that the value of a variable that follows the binomial distribution is greater than x.

Syntax

IDAX.PBINOM_H(DOUBLE x, INT8 N, DOUBLE p)

Parameter descriptions

x
Mandatory.
The value that is to be computed.
The number of successes in a single Bernoulli trial.
Data type: DOUBLE
N
Mandatory.
The number of trials.
If N is 0 or less, PBINOM_H(x,N,p) is null for all x values and p values.
Min: 1
Data type: INT8
p
Mandatory.
The probability of success.
If p is not in the range of 0 - 1, PBINOM_H(x,N,p) is null for all x values and N values.
Min: 0.00000000001
Max: 1-0.00000000001
Data type: DOUBLE

PBINOM_H(x,N,p) = 1-PBINOM(x,N,p) for all x values, positive N values, and for p values in the range of 0 - 1.

Returned information

DOUBLE the cumulative probability distribution from x to plus infinity.