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. Ifcumulative
isTRUE
, thenF.DIST
returns the cumulative distribution function; ifFALSE
, it returns the probability density function.
Step-by-Step Tutorial
-
Using
F.DIST
with given values and degrees of freedom:- Example:
=F.DIST(2, 4, 6, TRUE)
- Result:
0.779193387
- Example:
-
Using
F.DIST
with cell references and degrees of freedom:- Example: If
A1
has the value2
,B1
has the value4
,C1
has 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