Calculates the left-tailed F probability distribution (degree of diversity) for two data sets with given input x. Alternately called Fisher-Snedecor distribution or Snedecor's F distribution.
Sample Usage
F.DIST(15.35, 7, 6, TRUE)
F.DIST(A2, B2, C2, FALSE)
Syntax
F.DIST(x, degrees_freedom1, degrees_freedom2, cumulative)
-
x- The input to the F probability distribution function. The value at which to evaluate the function.-
Must be a positive number.
-
-
degrees_freedom1- The numerator degrees of freedom. -
degrees_freedom2- The denominator degrees of freedom. -
cumulative- Logical value that determines the form of the function. Default value isFALSE.-
If
TRUE:F.DISTreturns the cumulative distribution function. -
If
FALSE:F.DISTreturns the probability density function.
-
Notes
-
Both
degrees_freedom1anddegrees_freedom2are truncated to an integer in the calculation if a non-integer is provided as an argument. -
Both
degrees_freedom1anddegrees_freedom2must be greater than1and may not exceed10^10. -
x,degrees_freedom1, anddegrees_freedom2must be numeric.
See Also
FDIST
: Calculates the right-tailed F probability distribution (degree of diversity) for two data sets with given input x. Alternately called Fisher-Snedecor distribution or Snedecor's F distribution.
TDIST
: Calculates the probability for Student's t-distribution with a given input (x).
T.INV
: Calculates the negative inverse of the one-tailed TDIST function.

