What Is the Geometric Mean?

The geometric mean is an alternative to the arithmetic mean that works better when you're comparing values that multiply together rather than add. Instead of summing and dividing, you multiply all the values and take the nth root.

The Formula

For \(n\) positive numbers \(x_1, x_2, \ldots, x_n\):

$$\text{GM} = \sqrt[n]{x_1 \cdot x_2 \cdot x_3 \cdots x_n} = \left(x_1 \cdot x_2 \cdots x_n\right)^{1/n}$$

Multiply all the values together, then take the nth root — where n is how many values you have. Two values → square root. Three values → cube root. And so on.

Note: The geometric mean only works with positive numbers. Negative values can produce imaginary results depending on how many you have, and zero in the set always gives a geometric mean of zero.

Example 1

What is the geometric mean of 2, 8, and 4?

Three values, so take the cube root of their product:

$$\text{GM} = \sqrt[3]{2 \times 8 \times 4} = \sqrt[3]{64} = 4$$

Example 2

What is the geometric mean of 4, 9, 9, and 2?

$$\text{GM} = \sqrt[4]{4 \times 9 \times 9 \times 2} = \sqrt[4]{648} \approx 5.05$$

When to Use the Geometric Mean

The geometric mean is the right tool when your values are rates, ratios, or percentages — situations where the quantities compound or multiply rather than simply add up.

Investment returns are the most common example. If a stock grows by 10% one year and 30% the next, the arithmetic mean return is 20%. But if you do the math, $100 → $110 → $143, which is 43% total over two years — not 40%. The geometric mean of the two growth factors gives the correct average annual rate:

$$\text{GM} = \sqrt{1.10 \times 1.30} = \sqrt{1.43} \approx 1.196$$

That's an average annual return of about 19.6%, and \(1.196^2 = 1.43\) — which correctly accounts for the actual growth.

The arithmetic mean overstates performance because it ignores the compounding effect. The geometric mean doesn't.

Other common uses: average population growth rates, average aspect ratios in image processing, normalized test scores across different scales.

As a rule: if you'd describe the relationship between values using "times" or "percent change," use the geometric mean. If you'd describe it using "plus" or "minus," use the arithmetic mean.

Practice Problems

1. Find the geometric mean of 3 and 12. Show answer\(\sqrt{3 \times 12} = \sqrt{36} = 6\).

2. Find the geometric mean of 1, 2, 4, and 8. Show answer\(\sqrt[4]{1 \times 2 \times 4 \times 8} = \sqrt[4]{64} = 64^{1/4} = (2^6)^{1/4} = 2^{3/2} = 2\sqrt{2} \approx 2.83\).

3. An investment grows by 50% in year one and falls by 20% in year two. What is the geometric mean annual return? Show answerGrowth factors: 1.50 and 0.80. \(\text{GM} = \sqrt{1.50 \times 0.80} = \sqrt{1.20} \approx 1.095\). The average annual return is about 9.5%. (Check: \(1.095^2 \approx 1.20\), which matches the actual two-year result of \(1.50 \times 0.80 = 1.20\).)

4. The geometric mean of two numbers is 6 and their arithmetic mean is 6.5. What are the two numbers? Show answerLet the numbers be \(a\) and \(b\). Then \(\sqrt{ab} = 6 \implies ab = 36\), and \(\frac{a+b}{2} = 6.5 \implies a+b = 13\). Solving: \(a\) and \(b\) are roots of \(t^2 - 13t + 36 = 0 = (t-4)(t-9)\). The numbers are 4 and 9.