Syntax
| Parameter | Description |
|---|---|
| probability | Parameter of the F.INV function. |
| deg_freedom1 | Parameter of the F.INV function. |
| deg_freedom2 | Parameter of the F.INV function. |
Examples
95th percentile F-value
=F.INV(0.95, 3, 20)
Lower bound for variance ratio CI
=F.INV(0.025, 14, 19)
Median of F-distribution
=F.INV(0.5, 5, 10)
Common Errors
Probability must be between 0 and 1 (inclusive). Both degrees of freedom must be at least 1.
Occurs when arguments are non-numeric.
Tips
F.INV returns the left-tail inverse. For finding critical values for ANOVA and F-tests (which reject in the right tail), use F.INV.RT instead.
F.INV(p, df1, df2) = 1 / F.INV.RT(p, df2, df1). You can convert between left and right tail inverses by taking the reciprocal and swapping df.
To construct a CI for the ratio of two variances: lower = (s1^2/s2^2) * F.INV(alpha/2, n2-1, n1-1), upper = (s1^2/s2^2) * F.INV(1-alpha/2, n2-1, n1-1).
Try F.INV in Viztab
Import your data and use F.INV with 370+ other formulas. No signup required.
Open Viztab