How to Calculate the Geometric Mean

Takes the nth root of the product of n values. It is the right average for growth rates and multipliers: the average of ×1.2 and ×1.8 is not ×1.5 but about ×1.47. All values must be positive.

The geometric mean multiplies all the values together and takes the nn-th root of the product.

G=x1×x2××xnnG = \sqrt[n]{x_1 \times x_2 \times \cdots \times x_n}

Use it whenever the quantities compound by multiplication, such as growth rates or investment returns. Adding and dividing gives the wrong answer for those.

Example

Suppose something grows by a factor of 1.2 in the first year and 1.8 in the second. What is the average yearly factor?

G=1.2×1.8=2.16=1.4697G = \sqrt{1.2 \times 1.8} = \sqrt{2.16} = 1.4697

Growing by 1.4697 twice gives 1.46972=2.161.4697^2 = 2.16, exactly the true two-year growth of 1.2×1.8=2.161.2 \times 1.8 = 2.16.

The arithmetic mean (1.2+1.8)÷2=1.5(1.2 + 1.8) \div 2 = 1.5 would imply 1.52=2.251.5^2 = 2.25, overstating the growth.

Watch out