NAG FL Interface
g01fef (inv_​cdf_​beta)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g01fef returns the deviate associated with the given lower tail probability of the beta distribution.

2 Specification

Fortran Interface
Function g01fef ( p, a, b, tol, ifail)
Real (Kind=nag_wp) :: g01fef
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: p, a, b, tol
C Header Interface
#include <nag.h>
double  g01fef_ (const double *p, const double *a, const double *b, const double *tol, Integer *ifail)
The routine may be called by the names g01fef or nagf_stat_inv_cdf_beta.

3 Description

The deviate, βp, associated with the lower tail probability, p, of the beta distribution with parameters a and b is defined as the solution to
P(Bβp:a,b)=p=Γ(a+b) Γ(a)Γ(b) 0βpBa-1(1-B)b-1dB,  0βp1;a,b>0.  
The algorithm is a modified version of the Newton–Raphson method, following closely that of Cran et al. (1977).
An initial approximation, β0, to βp is found (see Cran et al. (1977)), and the Newton–Raphson iteration
βi=βi-1-f(βi-1) f(βi-1) ,  
where f(β)=P(Bβ:a,b)-p is used, with modifications to ensure that β remains in the range (0,1).

4 References

Cran G W, Martin K J and Thomas G E (1977) Algorithm AS 109. Inverse of the incomplete beta function ratio Appl. Statist. 26 111–114
Hastings N A J and Peacock J B (1975) Statistical Distributions Butterworth

5 Arguments

1: p Real (Kind=nag_wp) Input
On entry: p, the lower tail probability from the required beta distribution.
Constraint: 0.0p1.0.
2: a Real (Kind=nag_wp) Input
On entry: a, the first parameter of the required beta distribution.
Constraint: 0.0<a106.
3: b Real (Kind=nag_wp) Input
On entry: b, the second parameter of the required beta distribution.
Constraint: 0.0<b106.
4: tol Real (Kind=nag_wp) Input
On entry: the relative accuracy required by you in the result. If g01fef is entered with tol greater than or equal to 1.0 or less than 10×machine precision (see x02ajf), the value of 10×machine precision is used instead.
5: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value -1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
Note: in some cases g01fef may return useful information.
If on exit ifail=1 or 2, then g01fef returns 0.0.
ifail=1
On entry, p=value.
Constraint: p1.0.
On entry, p=value.
Constraint: p0.0.
ifail=2
On entry, a=value and b=value.
Constraint: a>0.0.
On entry, a=value and b=value.
Constraint: a106.
On entry, a=value and b=value.
Constraint: b>0.0.
On entry, a=value and b=value.
Constraint: b106.
ifail=3
The solution has failed to converge. However, the result should be a reasonable approximation. Requested accuracy not achieved when calculating beta probability. You should try setting tol larger.
ifail=4
The requested accuracy has not been achieved. Use a larger value of tol. There is doubt concerning the accuracy of the computed result. 100 iterations of the Newton–Raphson method have been performed without satisfying the accuracy criterion (see Section 9). The result should be a reasonable approximation of the solution.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The required precision, given by tol, should be achieved in most circumstances.

8 Parallelism and Performance

g01fef is not threaded in any implementation.

9 Further Comments

The typical timing will be several times that of g01eef and will be very dependent on the input argument values. See g01eef for further comments on timings.

10 Example

This example reads lower tail probabilities for several beta distributions and calculates and prints the corresponding deviates until the end of data is reached.

10.1 Program Text

Program Text (g01fefe.f90)

10.2 Program Data

Program Data (g01fefe.d)

10.3 Program Results

Program Results (g01fefe.r)