🧠MindStat

⚠️ Calculator not found

This calculator does not exist or may have been moved.

Browse all calculators
📈
Distribution

F-Distribution Calculator — Critical F Table

Free F-distribution calculator. Compute p-values from an F-ratio with numerator and denominator degrees of freedom, plus critical F values — for ANOVA and regression F-tests.

📊 F = 3.885, df(2,12) → p = .0500
Live calculator
🧮 Live Calculator
P(F ≤ x)
P(F ≥ x) (p-value)
Critical F (upper tail)
Got your number. Need a full analysis of your own data? Open MindStat
Formula, reference table & FAQ

The F-distribution is the distribution of the ratio of two independent chi-square variables, each divided by its own degrees of freedom. It is the reference distribution for comparing variances directly (Levene's test, the F-test for equal variances) and — far more commonly — for the omnibus F-test in ANOVA and multiple regression, where it tests whether the variance explained by a model is large relative to the unexplained (residual) variance. Because it compares two variances, the F-distribution needs TWO degrees-of-freedom parameters: df1 (numerator, associated with the effect being tested) and df2 (denominator, associated with the error/residual).

One-way ANOVA F-ratio
F=MSbetweenMSwithin=SSbetween/df1SSwithin/df2

Critical F Values (α = .05, upper tail)

df1 ↓ / df2 →510203060
16.6084.9654.3514.1714.001
25.7864.1033.4933.3163.150
35.4093.7083.0982.9222.758
45.1923.4782.8662.6902.525
55.0503.3262.7112.5342.368
64.9503.2172.5992.4212.254
84.8183.0722.4472.2662.097
104.7352.9782.3482.1651.993
124.6782.9132.2782.0921.917
154.6192.8452.2032.0151.836
204.5582.7742.1241.9321.748
Generated directly from src/core/distributions.js (fInv) — never hand-typed.

Frequently Asked Questions

Why does the F-test need two degrees of freedom?
Because F is a ratio of two independent variance estimates, each with its own sampling variability that depends on its own sample size. df1 (numerator) reflects the number of groups/predictors being compared; df2 (denominator) reflects the sample size left over for estimating error variance. Both affect how much the ratio would vary by chance alone, so both are needed to find the right critical value.
Is F the square of t?
Yes, in the specific case of df1 = 1: F(1, df2) = t(df2)². This is exactly why a two-group one-way ANOVA gives the identical p-value as an independent-samples pooled-variance t-test — they are testing the same hypothesis via mathematically equivalent statistics.
What if my F-ratio is less than 1?
An F-ratio below 1 means the between-group variance is smaller than the within-group (error) variance — the opposite of what a real effect would produce. It is never statistically significant in a standard one-tailed ANOVA F-test (P(F ≥ x) will always exceed .5), so there is no need to look it up against a critical value at all.
Why does the mini-table only show α = .05?
A full F-table needs a separate grid of df1 × df2 combinations for every α level, which quickly becomes too large for a compact reference table — traditional printed F-tables devote a full page per α. The live calculator above computes the exact critical F for any α, df1, and df2 combination instantly, making a second printed table for other α levels unnecessary.