Statistical

FTEST Formula

Performs an F-test and returns the two-tailed p-value for testing whether two samples have equal variances. This is the legacy compatibility version of F.TEST. It is commonly used as a preliminary step before choosing the appropriate type of t-test.

Syntax

FTEST(array1, array2)
ParameterDescription
array1 Parameter of the FTEST function.
array2 Parameter of the FTEST function.
Try FTEST in Viztab — free, no signup

Examples

Batch consistency check

Formula
=FTEST(A2:A41, B2:B41)
Returns the p-value comparing the variance of 40 measurements from batch A versus batch B. A significant result means the batches have different consistency.

Supplier quality comparison

Formula
=FTEST(C2:C26, D2:D26)
Tests whether two suppliers' products have different variability in their specifications.

Before and after process change

Formula
=FTEST(E2:E51, F2:F51)
Compares measurement variability before and after a process improvement. If p < 0.05, the change significantly affected process consistency.

Common Errors

#DIV/0!

Occurs if either dataset has zero variance (all identical values).

#N/A

Returned if either array has fewer than 2 numeric values.

Tips

Migrate to F.TEST

FTEST is the compatibility version. F.TEST is the modern replacement with identical behavior.

Assumes normality

The F-test for variances assumes the data is normally distributed. It can give misleading results with skewed or heavy-tailed data.

Interpret carefully

A high p-value (e.g., 0.7) means no evidence of different variances. A low p-value (e.g., 0.02) suggests the variances are significantly different.

Try FTEST in Viztab

Import your data and use FTEST with 370+ other formulas. No signup required.

Open Viztab

Related Formulas