Previous Up Next

20.4.10  Fisher-Snédécor distribution

The probability density function for the Fisher-Snédécor distribution.

The Fisher-Snédécor distribution (also called the F-distribution) with n1 and n2 degrees of freedom has density function given by, for x ≥ 0,

fisher(n1,n2,x)=
(n1/n2)n1/2Γ((n1+n2)/2)
Γ(n1/2)Γ(n2/2)
·
x(n1−2)/2
(1+(n1/n2)x)(n1+n2)/2
.     (7)

The fisher or fisherd or snedecor command computes this density function.

Example

fisher(5,3,2.5)
     
0.10131184472           
The cumulative distribution function for the Fisher-Snédécor distribution.

The fisher_cdf (or snedecor_cdf) command computes the cumulative distribution function for the Fisher-Snédécor distribution.

Examples

fisher_cdf(5,3,9)
     
β


5
2
,
3
2
,
15
16
,1


          

(See Section 7.3.16.) This can be numerically approximated with:

evalf(fisher_cdf(5,3,9))
     
0.949898927032           
evalf(fisher_cdf(5,3,9,10))
     
0.0066824173023           
The inverse distribution function for the Fisher-Snédécor distribution.

The fisher_icdf (or snedecor_icdf) command computes the inverse distribution for the Fisher-Snédécor distribution.

Example

fisher_icdf(5,3,0.95)
     
9.01345516752           
The upper tail cumulative function for the Fisher-Snédécor distribution.

The UTPF (the Upper Tail Probability-Fisher-Snédécor distribution) computes Prob(X > x) for the Fisher-Snédécor distribution.

Example

UTPF(5,3,9)
     
0.050101072968           

Previous Up Next