complementaryTCdf

Evaluates the complement of the Student’s t distribution.

Synopsis

complementaryTCdf (t, df)

Required Arguments

float t (Input)
Argument for which Pr(x > t) is to be evaluated.
float df (Input)
Degrees of freedom. Argument df must be greater than or equal to 1.0.

Return Value

The probability that a Student’s t random variable takes a value greater than t.

Description

Function complementaryTCdf evaluates one minus the distribution function of a Student’s t random variable with ν = df degrees of freedom. If t2ν, the following identity relating the complementary Student’s t cumulative distribution function, denoted by ¯F(t|ν), to the incomplete beta ratio function Ix(a,b) is used:

¯F(t|ν)=12Ix(ν2,12),t>0,t2>ν

where

x=vt2+v

and

¯F(t|ν)=1¯F(t|ν),t0,t2ν

If t2<ν, the solution space is partitioned into four algorithms as follows: If ν64 and t2/ν0.1, a Cornish-Fisher expansion is used to evaluate the distribution function. If ν<64 and an integer and |t|<2.0, a trigonometric series is used (see Abramowitz and Stegun 1964, Equations 26.7.3 and 26.7.4 with some rearrangement). If ν<64 and an integer and |t|2.0, a series given by Hill (1970) that converges well for large values of t is used. For the remaining t2<ν cases, ¯F(t|ν) is calculated using the identity:

¯F(t,ν)=I1x(ν2,ν2)

where

x=t+t2+ν2t2+ν

This function provides higher right tail accuracy for the Student’s t distribution.

../../_images/csch11-figure10.png

Figure 11.10 — Plot of Ft(t,df)

Example

This example finds the 2-tail probability that a Student’s t random variable exceeds 2.447.

from __future__ import print_function
from numpy import *
from pyimsl.stat.complementaryTCdf import complementaryTCdf

t = 2.447
df = 6.0

p = 2.0 * complementaryTCdf(t, df)
print("Pr(|t(%1.0f)| > %4.3f) = %6.4f" % (df, t, p))

Output

Pr(|t(6)| > 2.447) = 0.0500