The F.DIST.RT function in Google Sheets is instrumental for statisticians and data analysts who want to evaluate the right-tailed F probability distribution. This function is particularly useful for assessing the variance between two data sets, making it a vital tool for hypothesis testing and analysis of variance (ANOVA).
Syntax
F.DIST.RT(x, degrees_freedom1, degrees_freedom2)
- x: The value at which to evaluate the distribution.
- degrees_freedom1: The first degree of freedom related to the numerator variance.
- degrees_freedom2: The second degree of freedom related to the denominator variance.
Example #1
F.DIST.RT(3.5, 5, 10)
This function calculates the right-tailed F probability for an F-value of 3.5 with 5 and 10 degrees of freedom, resulting in approximately 0.05.
Example #2
F.DIST.RT(2.8, 4, 8)
In this case, the function evaluates the probability distribution for an F-value of 2.8 with 4 and 8 degrees of freedom. The result is around 0.14.
Example #3
F.DIST.RT(1.2, 10, 10)
Here, the function returns the right-tailed F probability for an F-value of 1.2, using 10 degrees of freedom for both the numerator and denominator, yielding a result close to 0.38.
Error handling
- NUM!: Occurs if any of the degrees of freedom are not numeric or are less than 1.
- VALUE!: Triggered when the input x is non-numeric, indicating that the function requires numerical values.
- DIV/0!: This error appears if degrees_freedom1 or degrees_freedom2 are set to zero, leading to an undefined calculation.