Geometric mean (GM) is the nth root of the product of n observations, commonly used for averaging rates of change, growth rates, and index numbers.
## Core concept
The Geometric Mean is a type of average used when data involves ratios, percentages, or multiplicative processes (e.g., annual growth rates, price increases over multiple years).
Definition: For n observations x₁, x₂, ..., xₙ:
$$GM = \sqrt[n]{x_1 \times x_2 \times ... \times x_n} = (x_1 \times x_2 \times ... \times x_n)^{1/n}$$
Why use GM instead of AM? - Arithmetic Mean assumes additive relationships; GM assumes multiplicative relationships - For data spanning different scales or involving rates of change, GM avoids distortion - Example: If investment grows 10% one year and 20% the next, GM of 1.10 and 1.20 gives the correct average growth rate; AM would mislead
## Formula / rule
For ungrouped data: $$GM = \sqrt[n]{x_1 \times x_2 \times ... \times x_n}$$
For grouped data (frequency distribution): $$GM = \sqrt[n]{x_1^{f_1} \times x_2^{f_2} \times ... \times x_k^{f_k}}$$ where fᵢ are frequencies and n = Σfᵢ
Using logarithms (practical calculation): $$\log(GM) = \frac{1}{n}\sum_{i=1}^{n} \log(x_i)$$ $$GM = \text{Antilog}\left(\frac{\sum \log x_i}{n}\right)$$
This log method avoids computing very large products and is preferred in exams.
## Common exam applications
1. Average growth rates - 3-year investment returns: 5%, 12%, 8% (expressed as 1.05, 1.12, 1.08) - GM gives true compound annual growth rate (CAGR)
2. Index numbers - Averaging price indices over multiple periods
3. Relationship with AM and HM - For any positive data set: AM ≥ GM ≥ HM - Equality holds only when all observations are identical - Used to verify reasonableness of calculated means
4. Speed/rate problems - If you travel at 40 km/h for distance d₁ and 60 km/h for distance d₂, GM gives average speed for equal distances
## Worked example
A stock's price multiplied by factors of 1.20, 1.10, and 1.25 over three years. Find the average annual growth factor.
Given: x₁ = 1.20, x₂ = 1.10, x₃ = 1.25; n = 3
Method 1 (Log approach): - log(1.20) = 0.0792 - log(1.10) = 0.0414 - log(1.25) = 0.0969 - Sum = 0.2175
$$\log(GM) = \frac{0.2175}{3} = 0.0725$$ $$GM = \text{Antilog}(0.0725) = 1.183$$
Average annual growth rate = 18.3%
Verify: 1.183³ ≈ 1.651; direct product = 1.20 × 1.10 × 1.25 = 1.65 ✓
## Common mistakes
- Using AM for growth rates: Results in incorrect CAGR; always use GM for multiplicative data
- Forgetting the log method: Attempting direct calculation with large numbers causes computation errors
- Including zero or negative values: GM requires all observations > 0; negative/zero values make GM meaningless
- Confusing with position formula: Don't mix up partition value formulas with GM
- Incorrect antilog: Ensure calculator settings (base 10) match your logarithm base
## Quick diagnostic
Use GM when: - Data represents rates, ratios, or growth percentages - Values are expressed as multipliers (1.05, 1.20, etc.) - Question explicitly mentions "average annual growth" or "compound rate"
Use AM when data is simple aggregation (heights, scores, costs without percentage change).