IDAX.QBINOM_H - High-tail inverse binomial distribution

The QBINOM_H function returns the value x of a variable that follows the binomial distribution for which the probability of being greater than x is equal to the specified percentage.

Syntax

IDAX.QBINOM_H(DOUBLE percentage, INT8 N, DOUBLE p)

Parameter descriptions

percentage
Mandatory.
The requested limit of the percentage.
If percentage is not in the range of 0 - 1, QBINOM_H(percentage,N,p) is null for all p values.
Min: 0.00000000001
Max: 0.99999999999
Data type: DOUBLE
N
Mandatory.
The number of trials.
If N is 0 or less, QBINOM_H(perc,N,p) is null for all perc 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, QBINOM_H(percentage,N,p) is null for all percentage values and N values.
Min: 0.00000000001
Max: 1-0.00000000001
Data type: DOUBLE

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

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

Returned information

INT8 the point x where PBINOM_H(x,N,p)=percentage.