F Distribution

1 min read Last updated Sat Jun 27 2026 08:46:52 GMT+0000 (Coordinated Universal Time)

Suppose 2 independent populations (of sizes N1N_1 and N2N_2) are given. And samples of sizes n1n_1 and n2n_2 are taken from each population.

F statistic can be computed using:

F=χ12/ν1χ22/ν2=s12s22σ12σ22F = \cfrac{ \chi_1^2 / \nu_1 }{ \chi_2^2 / \nu_2 } = \frac{ s_1^2 }{ s_2^2 }\cdot \frac{\sigma_1 ^2}{\sigma_2 ^2}

Properties

Degrees of Freedom

Degrees of freedom are ν1=n11\nu_1 = n_1 - 1 and ν2=n21\nu_2 = n_2 - 1.

F Reciprocal

Fν1,ν2,α=1Fν2,ν1,1αF_{\nu_1, \nu_2, \alpha} = \frac{1}{F_{\nu_2, \nu_1, 1 - \alpha}}

Uses

  • Variance comparison: test whether 2 populations have equal variance
  • ANOVA: test whether means of 3 or more groups are equal (ratio of between-group to within-group variance)
  • Regression F-test: test whether the regression model as a whole explains a significant portion of variance in the response

Hypothesis Test for Equal Variance

H0H_0: σ12=σ22\sigma_1^2 = \sigma_2^2

Test statistic:

F=s12s22F = \frac{s_1^2}{s_2^2}

Under H0H_0, FF(ν1,ν2)F \sim F(\nu_1, \nu_2).

Reject H0H_0 if F>Fν1,ν2,αF > F_{\nu_1, \nu_2, \alpha} (right-tail) or compare against both tails for a 2-tailed test. Critical values are read from the F-table for the given ν1\nu_1, ν2\nu_2, and significance level α\alpha.

Was this helpful?