G01FBF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G01FBF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G01FBF returns the deviate associated with the given tail probability of Student's t-distribution with real degrees of freedom, via the routine name.

2  Specification

FUNCTION G01FBF ( TAIL, P, DF, IFAIL)
REAL (KIND=nag_wp) G01FBF
INTEGER  IFAIL
REAL (KIND=nag_wp)  P, DF
CHARACTER(1)  TAIL

3  Description

The deviate, tp associated with the lower tail probability, p, of the Student's t-distribution with ν degrees of freedom is defined as the solution to
PT<tp:ν=p=Γν+1/2 νπΓν/2 -tp 1+T2ν -ν+1/2dT,  ν1; ​-<tp<.
For ν=1​ or ​2 the integral equation is easily solved for tp.
For other values of ν<3 a transformation to the beta distribution is used and the result obtained from G01FEF.
For ν3 an inverse asymptotic expansion of Cornish–Fisher type is used. The algorithm is described by Hill (1970).

4  References

Hastings N A J and Peacock J B (1975) Statistical Distributions Butterworth
Hill G W (1970) Student's t-distribution Comm. ACM 13(10) 617–619

5  Parameters

1:     TAIL – CHARACTER(1)Input
On entry: indicates which tail the supplied probability represents.
TAIL='U'
The upper tail probability, i.e., PTtp:ν.
TAIL='L'
The lower tail probability, i.e., PTtp:ν.
TAIL='S'
The two tail (significance level) probability, i.e., PTtp:ν+PT-tp:ν.
TAIL='C'
The two tail (confidence interval) probability, i.e., PTtp:ν-PT-tp:ν.
Constraint: TAIL='U', 'L', 'S' or 'C'.
2:     P – REAL (KIND=nag_wp)Input
On entry: p, the probability from the required Student's t-distribution as defined by TAIL.
Constraint: 0.0<P<1.0.
3:     DF – REAL (KIND=nag_wp)Input
On entry: ν, the degrees of freedom of the Student's t-distribution.
Constraint: DF1.0.
4:     IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction 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 parameters 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: G01FBF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
If IFAIL=1, 2 or 3 on exit, then G01FBF returns zero.
IFAIL=1
On entry,TAIL'U', 'S', 'C' or 'L'.
IFAIL=2
On entry,P0.0,
orP1.0.
IFAIL=3
On entry,DF<1.0.
IFAIL=5
Convergence in the calculation of the inverse beta value was not achieved. However, the result should be a reasonable approximation to the correct value.

7  Accuracy

The results should be accurate to five significant digits, for most parameter values. The error behaviour for various parameter values is discussed in Hill (1970).

8  Further Comments

The value tp may be calculated by using the transformation described in Section 3 and using G01FEF. This routine allows you to set the required accuracy.

9  Example

This example reads the probability, the tail that probability represents and the degrees of freedom for a number of Student's t-distributions and computes the corresponding deviates.

9.1  Program Text

Program Text (g01fbfe.f90)

9.2  Program Data

Program Data (g01fbfe.d)

9.3  Program Results

Program Results (g01fbfe.r)


G01FBF (PDF version)
G01 Chapter Contents
G01 Chapter Introduction
NAG Library Manual

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