The F.INV function in Excel is a crucial statistical tool used to determine the value of the random variable for a specific probability within the F probability distribution. This function is particularly helpful in hypothesis testing, especially in ANOVA (Analysis of Variance) scenarios where comparing variances is essential. By providing the inverse of the cumulative distribution function for the F distribution, users can easily interpret the critical values needed for their analyses.
Syntax
F.INV(probability, deg_freedom1, deg_freedom2)
- probability: The probability associated with the F distribution.
- deg_freedom1: The numerator degrees of freedom.
- deg_freedom2: The denominator degrees of freedom.
Example #1
F.INV(0.95, 5, 10)
This function returns the value related to a cumulative probability of 0.95, with 5 and 10 degrees of freedom for the numerator and denominator, respectively. Result: 3.568.
Example #2
F.INV(0.90, 3, 7)
This function calculates the critical F value for a cumulative probability of 0.90, using 3 numerator degrees of freedom and 7 denominator degrees of freedom. Result: 3.551.
Example #3
F.INV(0.99, 10, 5)
In this case, the function evaluates the inverse F value at a probability of 0.99 with 10 degrees of freedom in the numerator and 5 in the denominator. Result: 6.591.
Error handling
- NUM! The function returns this error if the specified probability is either less than 0 or greater than 1, indicating an invalid probability value.
- DIV/0! This error occurs if either of the degrees of freedom parameters is less than 1, leading to an undefined result.
- VALUE! The function triggers this error when the inputs for probability or degrees of freedom are not numeric.