F.DIST
The F.DIST function in Google Sheets calculates the left-tailed F probability distribution (degree of diversity) for two data sets with a given input x. It is also known as the Fisher-Snedecor distribution or Snedecor's F distribution.
Function Syntax and Parameters
Syntax: F.DIST(x, degrees_freedom1, degrees_freedom2, cumulative)
Parameters:
x: The value at which to evaluate the distribution.degrees_freedom1: The numerator degrees of freedom.degrees_freedom2: The denominator degrees of freedom.cumulative: [Optional] A logical value that determines the form of the function. IfcumulativeisTRUE, thenF.DISTreturns the cumulative distribution function; ifFALSE, it returns the probability density function.
Step-by-Step Tutorial
-
Using
F.DISTwith given values and degrees of freedom:- Example:
=F.DIST(2, 4, 6, TRUE) - Result:
0.779193387
- Example:
-
Using
F.DISTwith cell references and degrees of freedom:- Example: If
A1has the value2,B1has the value4,C1has the value6, then=F.DIST(A1, B1, C1, TRUE)will return0.779193387.
- Example: If
Use Cases and Scenarios
- Statistical Analysis: Evaluate the F distribution for specific values and degrees of freedom.
- Quality Assurance: Calculate the left-tailed F probability to determine the variability between samples.
- Experimental Design: Assess the diversity of data sets in scientific experiments.
Related Functions
F.DIST.RT: Calculates the right-tailed F probability distribution.
Related Articles
None