NAG Library Routine Document

g01gdf  (prob_f_noncentral)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g01gdf returns the probability associated with the lower tail of the noncentral F or variance-ratio distribution, via the routine name.

2
Specification

Fortran Interface
Function g01gdf ( f, df1, df2, rlamda, tol, maxit, ifail)
Real (Kind=nag_wp):: g01gdf
Integer, Intent (In):: maxit
Integer, Intent (Inout):: ifail
Real (Kind=nag_wp), Intent (In):: f, df1, df2, rlamda, tol
C Header Interface
#include nagmk26.h
double  g01gdf_ ( const double *f, const double *df1, const double *df2, const double *rlamda, const double *tol, const Integer *maxit, Integer *ifail)

3
Description

The lower tail probability of the noncentral F-distribution with ν1 and ν2 degrees of freedom and noncentrality parameter λ, PFf:ν1,ν2;λ, is defined by
PFf:ν1,ν2;λ=0xpF:ν1,ν2;λdF,  
where
PF : ν1,ν2;λ =j= 0e-λ/2 λ/2jj! ×ν1+ 2jν1+ 2j/2 ν2ν2/2 Bν1+ 2j/2,ν2/2  
×uν1+2j-2/2ν2+ν1+2ju -ν1+2j+ν2/2  
and B·,· is the beta function.
The probability is computed by means of a transformation to a noncentral beta distribution:
PFf:ν1,ν2;λ=PβXx:a,b;λ,  
where x= ν1f ν1f+ν2  and PβXx:a,b;λ is the lower tail probability integral of the noncentral beta distribution with parameters a, b, and λ.
If ν2 is very large, greater than 106, then a χ2 approximation is used.

4
References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications

5
Arguments

1:     f – Real (Kind=nag_wp)Input
On entry: f, the deviate from the noncentral F-distribution.
Constraint: f>0.0.
2:     df1 – Real (Kind=nag_wp)Input
On entry: the degrees of freedom of the numerator variance, ν1.
Constraint: 0.0<df1106.
3:     df2 – Real (Kind=nag_wp)Input
On entry: the degrees of freedom of the denominator variance, ν2.
Constraint: df2>0.0.
4:     rlamda – Real (Kind=nag_wp)Input
On entry: λ, the noncentrality parameter.
Constraint: 0.0rlamda-2.0logU where U is the safe range parameter as defined by x02amf.
5:     tol – Real (Kind=nag_wp)Input
On entry: the relative accuracy required by you in the results. If g01gdf 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.
6:     maxit – IntegerInput
On entry: the maximum number of iterations to be used.
Suggested value: 500. See g01gcf and g01gef for further details.
Constraint: maxit1.
7:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if ifail0 on exit, the recommended value is -1. 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).
Note: g01gdf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
If on exit ifail=1 or 3, then g01gdf returns 0.0.
ifail=1
On entry, df1=value.
Constraint: 0.0<df1106.
On entry, df1=value.
Constraint: df1>0.0.
On entry, df2=value.
Constraint: df2>0.0.
On entry, f=value.
Constraint: f>0.0.
On entry, maxit=value.
Constraint: maxit1.
On entry, rlamda=value.
Constraint: 0.0rlamda-2.0×logU, where U is the safe range parameter as defined by x02amf.
ifail=2
The solution has failed to converge in value iterations. Consider increasing maxit or tol.
ifail=3
The required probability cannot be computed accurately. This may happen if the result would be very close to zero or one. Alternatively the values of df1 and f may be too large. In the latter case you could try using a normal approximation, see Abramowitz and Stegun (1972).
ifail=4
The required accuracy was not achieved when calculating the initial value of the central F or χ2 probability. You should try a larger value of tol. If the χ2 approximation is being used then g01gdf returns zero otherwise the value returned should be an approximation to the correct value.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The relative accuracy should be as specified by tol. For further details see g01gcf and g01gef.

8
Parallelism and Performance

g01gdf is not threaded in any implementation.

9
Further Comments

When both ν1 and ν2 are large a Normal approximation may be used and when only ν1 is large a χ2 approximation may be used. In both cases λ is required to be of the same order as ν1. See Abramowitz and Stegun (1972) for further details.

10
Example

This example reads values from, and degrees of freedom for, F-distributions, computes the lower tail probabilities and prints all these values until the end of data is reached.

10.1
Program Text

Program Text (g01gdfe.f90)

10.2
Program Data

Program Data (g01gdfe.d)

10.3
Program Results

Program Results (g01gdfe.r)

© The Numerical Algorithms Group Ltd, Oxford, UK. 2017