Previous Up Next

9.4.10  The Fisher-Snédécor distribution

The probability density function for the Fisher-Snédécor distribution: fisher fisherd snedecor snedecord

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 command computes this density function.
fisherd, snedecor and snedecord are synonyms for fisher.


Example.
Input:

fisher(5,3,2.5)

Output:

0.10131184472

The cumulative distribution function for the Fisher-Snédécor distribution: fisher_cdf snedecor_cdf

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


Examples.

The inverse distribution function for the Fisher-Snédécor distribution: fisher_icdf snedecor_icdf

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


Example.
Input:

fisher_icdf(5,3,0.95)

Output:

9.01345516752

The upper tail cumulative function for the Fisher-Snédécor distribution: UTPF

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


Example.
Input:

UTPF(5,3,9)

Output:

0.050101072968

Previous Up Next