9.4 Two Variance or Standard Deviation F-Test
9.5.1 The F-Distribution
An F-distribution is another special type of distribution for a continuous random variable.
Properties of the F-distribution density curve:
- Right skewed.
- F-scores cannot be negative.
- The spread of an F-distribution is determined by the degrees of freedom of the numerator, and by the degrees of freedom of the denominator. The df are usually determined by the sample sizes of the two populations or number of groups.
- The total area under the curve is equal to 1 or 100%.
The shape of the distribution curve changes when the degrees of freedom change. Figure 9-9 shows examples of F-distributions with different degrees of freedom.

Figure 9-9
We will use the F-distribution in several types of hypothesis testing. For now, we are just learning how to find the critical value and probability using the F-distribution.
Use the TI-89 Distribution menu; or in Excel F.INV to find the critical values for the F-distribution for tail areas only, depending on the degrees of freedom. When finding a probability given an F-score, use the calculator Fcdf function under the DISTR menu or in Excel use F.DIST. Note that the TI-83 and TI-84 do not come with the INVF function, but you may be able to find the program online or from your instructor.
Alternatively, use the calculator at https://homepage.divms.uiowa.edu/~mbognar/applets/f.html which will also graph the distribution for you and shade in one tail at a time. You will see the shape of the F-distribution change in the following examples depending on the degrees of freedom used. For your own sketch just make sure you have a positively skewed distribution starting at zero.
The critical values F/2 and F1–/2 are for a two-tailed test on the F-distribution curve with area 1 – between the critical values as shown in Figure 9-10. Note that the distribution starts at zero, is positively skewed, and never has negative F-scores.

Figure 9-10
9.5.2 Hypothesis Test for Two Variances
Sometimes we will need to compare the variation or standard deviation between two groups. For example, let’s say that the average delivery time for two locations of the same company is the same but we hear complaint of inconsistent delivery times for one location. We can use an F-test to see if the standard deviations for the two locations was different.
There are three types of hypothesis tests for comparing the ratio of two population variances, see Figure 9-14.

Figure 9-14
If we take the square root of the variance, we get a standard deviation. Therefore, taking the square root of both sides of the hypotheses, we can also use the same test for standard deviations. We use the following notation for the hypotheses.
There are 3 types of hypothesis tests for comparing the population standard deviations σ1/σ2, see Figure 9-15.

Figure 9-15
Important: This F-test is not robust (a statistic is called “robust” if it still performs reasonably well even when the necessary conditions are not met). In particular, this F-test demands that both populations be normally distributed even for larger sample sizes. This F-test yields unreliable results when this condition is not met.
# "Not robust" has a price tag. Here it is.
# Both samples come from the SAME skewed population, so the variances really ARE
# equal: a 5% test should reject H0 about 5% of the time. Watch what happens.
set.seed(9)
n1 <- 20; n2 <- 18
rate <- function(gen) mean(replicate(5000, {
x <- gen(n1); y <- gen(n2)
Fstat <- var(x) / var(y)
tail <- pf(Fstat, n1 - 1, n2 - 1)
2 * min(tail, 1 - tail) < 0.05 # two-tailed, alpha = 0.05
}))
rate(rexp) # skewed population -> about 0.26, five times the 5% you asked for
rate(rnorm) # normal population -> back near 0.05, as advertised
# Change rexp to runif (light tails) to see the error rate miss the other way.
The traditional method (or critical value method), and the p-value method are performed with steps that are identical to those when performing hypothesis tests from previous sections.
Example 6
A researcher is studying the variability in electricity (in kilowatt hours) people from two different cities use in their homes. Random samples of 17 days in Sacramento and 16 days in Portland are given below. Test to see if there is a difference in the variance of electricity use between the two cities at α = 0.10. Assume that electricity use is normally distributed, use the p-value method.

Show solution
The populations are independent and normally distributed.
The hypotheses are \(\begin{aligned}
&\mathrm{H}_{0}: \sigma_{1}^{2}=\sigma_{2}^{2} \\
&\mathrm{H}_{1}: \sigma_{1}^{2} \neq \sigma_{2}^{2}
\end{aligned}\)
Use technology to compute the standard deviations and sample sizes. Enter the Sacramento data into list 1, then do 1-Var Stats L1 and you should get s1 = 163.2362 and n1 = 17. Enter the Portland data into list 2, then do 1-Var Stats L2 and you should get s2 = 179.3957 and n2 = 16. Alternatively, use Excel’s descriptive statistics.
The test statistic is
The p-value would be double the area to the left of F = 0.82796 (Use double the area to the right if the test statistic is > 1).

Using the TI calculator Fcdf(0,0.82796,16,15).
In Excel we get the p-value =2*F.DIST(E8,E7,F7,TRUE) = 0.7106.
Since the p-value is greater than alpha, we would fail to reject H0.
There is no statistically significant difference between variance of electricity use between Sacramento and Portland.
Excel: When you have raw data, you can use Excel to find all this information using the Data Analysis tool. Enter the data into Excel, then choose Data > Data Analysis > F-Test: Two Sample for Variances.

Enter the necessary information as we did in previous sections (see below) and select OK. Note that Excel only does a one-tail F-test so use /2 = 0.10/2 = 0.05 in the Alpha box.

We get the following output. Note you can only use the critical value in Excel for a left-tail test.

Excel for some reason only does the smaller tail area for the F-test, so you will need to double the p-value for a two-tailed test, p-value = 0.355275877*2 = 0.7106.
Adapted from Mostly Harmless Statistics by Rachel Webb (Portland State University), hosted on LibreTexts (stats.libretexts.org) and licensed under CC BY-SA 4.0. Changes were made. License: CC-BY-SA-4.0.