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

NAG Library Routine Document

G01EBF

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

G01EBF returns the lower tail, upper tail or two tail probability for the Student's t-distribution with real degrees of freedom, via the routine name.

2  Specification

FUNCTION G01EBF ( TAIL, T, DF, IFAIL)
REAL (KIND=nag_wp) G01EBF
INTEGER  IFAIL
REAL (KIND=nag_wp)  T, DF
CHARACTER(1)  TAIL

3  Description

The lower tail probability for the Student's t-distribution with ν degrees of freedom, PTt:ν is defined by:
P Tt:ν = Γ ν+1 / 2 πν Γν/2 - t 1+ T2ν -ν+1 / 2 dT ,   ν1 .
Computationally, there are two situations:
(i) when ν<20, a transformation of the beta distribution, PβBβ:a,b is used
P Tt:ν = 12 Pβ B ν ν+t2 : ν/2, 12   when ​ t<0.0
or
P Tt:ν = 12 + 12 Pβ B ν ν+t2 : ν/2, 12   when ​ t>0.0 ;
(ii) when ν20, an asymptotic normalizing expansion of the Cornish–Fisher type is used to evaluate the probability, see Hill (1970).

4  References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
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 returned probability should represent.
TAIL='U'
The upper tail probability is returned, i.e., PTt:ν.
TAIL='S'
The two tail (significance level) probability is returned, i.e., PTt:ν+PT-t:ν.
TAIL='C'
The two tail (confidence interval) probability is returned, i.e., PTt:ν-PT-t:ν.
TAIL='L'
The lower tail probability is returned, i.e., PTt:ν.
Constraint: TAIL='U', 'S', 'C' or 'L'.
2:     T – REAL (KIND=nag_wp)Input
On entry: t, the value of the Student's t variate.
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, if you are not familiar with this parameter, the recommended value is 0. 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:
If IFAIL0, then G01EBF returns 0.0.
IFAIL=1
On entry,TAIL'U', 'S', 'C' or 'L'.
IFAIL=2
On entry,DF<1.0.

7  Accuracy

The computed probability should be accurate to five significant places for reasonable probabilities but there will be some loss of accuracy for very low probabilities (less than 10-10), see Hastings and Peacock (1975).

8  Further Comments

The probabilities could also be obtained by using the appropriate transformation to a beta distribution (see Abramowitz and Stegun (1972)) and using G01EEF. This routine allows you to set the required accuracy.

9  Example

This example reads values from, and degrees of freedom for Student's t-distributions along with the required tail. The probabilities are calculated and printed until the end of data is reached.

9.1  Program Text

Program Text (g01ebfe.f90)

9.2  Program Data

Program Data (g01ebfe.d)

9.3  Program Results

Program Results (g01ebfe.r)


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

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