nonCentralBetaInverseCdf¶
Evaluates the inverse of the noncentral beta cumulative distribution function (CDF).
Synopsis¶
nonCentralBetaInverseCdf (p, shape1, shape2, t_lambda)
Required Arguments¶
- float
p
(Input) - Probability for which the inverse of the noncentral beta cumulative
distribution function is to be evaluated.
p
must be non-negative and less than or equal to 1. - float
shape1
(Input) - First shape parameter of the noncentral beta distribution.
shape1
must be positive. - float
shape2
(Input) - Second shape parameter of the noncentral beta distribution.
shape2
must be positive. - float
t_lambda
(Input) - Noncentrality parameter.
t_lambda
must be non-negative.
Return Value¶
If the probability that a noncentral beta random variable takes a value less
than or equal to x
is p
, then x
is the return value of the
noncentral beta inverse CDF evaluated at p
.
Description¶
The noncentral beta distribution is a generalization of the beta distribution. If Z is a noncentral chi-square random variable with noncentrality parameter λ and 2α1 degrees of freedom, and Y is a chi‑square random variable with 2α2 degrees of freedom which is statistically independent of Z, then
is a noncentral beta-distributed random variable and
is a noncentral F-distributed random variable. The CDF for noncentral beta variable X can thus be simply defined in terms of the noncentral F CDF:
where Fx(x|α1,α2,λ) is a noncentral beta CDF
with x = x
, α1 = shape1
, α2 =
shape2
, and noncentrality parameter λ = t_lambda
; FF(f|2α1,2α2,λ) is a noncentral F CDF with argument f ,
numerator and denominator degrees of freedom 2α1 and
2α2 respectively, and noncentrality parameter λ; p = the
probability that F<f = the probability that X<x; and
(See documentation for function nonCentralFCdf
for a discussion of how
the noncentral F CDF is defined and calculated.) The correspondence between
the arguments of function nonCentralBetaInverseCdf
and the variables in
the above equations is as follows: α1 = shape1
,
α2 = shape2
, λ = t_lambda
, and p = p
.
Function nonCentralBetaInverseCdf
evaluates
by first evaluating
and then solving for x using
(See documentation for function nonCentralFInverseCdf for a discussion of how the inverse noncentral F CDF is calculated.)
Example¶
This example traces out a portion of an inverse noncentral beta distribution
with parameters shape1
= 50, shape2
= 5, and t_lambda
= 10.
from __future__ import print_function
from numpy import *
from pyimsl.stat.nonCentralBetaCdf import nonCentralBetaCdf
from pyimsl.stat.nonCentralBetaInverseCdf import nonCentralBetaInverseCdf
f = [0., .4, .8, 1.2, 1.6, 2.0, 2.8, 4.0]
shape1 = 50.
shape2 = 5.
lamb = 10.
print("shape1: %4.0f" % (shape1))
print("shape2: %4.0f" % (shape2))
print("lambda: %4.0f" % (lamb))
print(" x p = cdf(x cdfinv(p)")
for i in range(0, 8):
x = (shape1 * f[i]) / (shape1 * f[i] + shape2)
p = nonCentralBetaCdf(x, shape1, shape2, lamb)
bcdfinv = nonCentralBetaInverseCdf(p, shape1, shape2, lamb)
print(" %12.4e %12.4e %12.4e" % (x, p, bcdfinv))
Output¶
shape1: 50
shape2: 5
lambda: 10
x p = cdf(x cdfinv(p)
0.0000e+00 0.0000e+00 0.0000e+00
8.0000e-01 4.8879e-03 8.0000e-01
8.8889e-01 2.0263e-01 8.8889e-01
9.2308e-01 5.2114e-01 9.2308e-01
9.4118e-01 7.3385e-01 9.4118e-01
9.5238e-01 8.5041e-01 9.5238e-01
9.6552e-01 9.4713e-01 9.6552e-01
9.7561e-01 9.8536e-01 9.7561e-01