Previous Up Next

20.4.8  Student’s distribution

The probability density function for Student’s distribution.

Student’s distribution (also called Student’s t-distribution or the t-distribution) with n degrees of freedom has density function given by

student(n,x)=
Γ((n+1)/2)
Γ(n/2)
nπ



1+
x2
n



n−1/2



 
    (5)

where recall the Gamma function (see Section 7.3.13) is defined for x>0 by

  Γ(x)=
+∞


0
 ettx−1 dx.

The student or studentd command finds the density function for Student’s distribution.

Example

student(2,3)
     
π 
 
11
2
−1
2 π 
· 11
          

which can be numerically approximated by:

evalf(student(2,3))
     
0.0274101222343           
The cumulative distribution function for Student’s distribution.

The student_cdf command computes the cumulative distribution function for Student’s distribution.

Examples

student_cdf(5,2)
     
0.949030260585           
student_cdf(5,-2,2)
     
0.89806052117           
The inverse distribution function for Student’s distribution.

The student_icdf command computes the inverse distribution for Student’s distribution.

Example

student_icdf(5,0.95)
     
2.01504837333           
The upper tail cumulative function for Student’s distribution.

The UTPT (the Upper Tail Probability-T distribution) computes Prob(X > x) for Student’s distribution.

Example

UTPT(5,2)
     
0.0509697394149           

Previous Up Next