Geometric Mean Calculator

Calculate the geometric mean of positive numbers. Ideal for growth rates, returns, and ratios.

Comma or space separated (values ≤ 0 are excluded)
Geometric Mean
8.320335
ⁿ√(product) where n = 3
Arithmetic Mean
9.666667
Sum ÷ count (always ≥ geometric mean)
Harmonic Mean
7.081967
n ÷ Σ(1/xᵢ) — always ≤ geometric mean
GM / AM Ratio
86.07%
Higher spread between values
Geometric Std Dev
2.006667
exp(std dev of log values) — multiplicative spread
Product of All
576.000000
3 values multiplied together

Mean Comparison

Harmonic Mean7.081967
Geometric Mean8.320335
Arithmetic Mean9.666667

Per-Value Analysis

#Valueln(x)Ratio to GM% Diff from GMBar
14.0000001.3862940.4807×-51.93%
29.0000002.1972251.0817×+8.17%
316.0000002.7725891.9230×+92.30%

Summary Statistics

StatisticValueNote
Count3Number of values used
Min4.000000Smallest value
Max16.000000Largest value
Range12.000000Max − Min
Median9.000000Middle value
Sum of ln(x)6.356108Used in GM calculation
Mean of ln(x)2.118703ln(GM) = mean of logs
Std Dev of ln(x)0.696475Spread in log space
Planning notes, formulas, and examples

About the Geometric Mean Calculator

The Geometric Mean Calculator computes the geometric mean of positive numbers. The geometric mean is calculated by multiplying all n values together and taking the nth root. It is the correct average for rates of change, growth rates, and ratios.

While the arithmetic mean adds values, the geometric mean multiplies them. This makes it ideal for compound interest calculations, average investment returns, and any situation where percentages are compounded over time.

If your investment grows 50% one year and loses 33% the next, the arithmetic mean suggests 8.5% average growth, but the geometric mean correctly shows 0% (you ended where you started).

When This Page Helps

The arithmetic mean overestimates compound growth. The geometric mean provides the true average rate of change for multiplicative processes like investment returns.

How to Use the Inputs

  1. Enter positive numbers separated by commas.
  2. View the geometric mean in the result panel.
  3. Compare it with the arithmetic mean.
  4. Use percent changes by entering growth factors (e.g. 1.10 for +10%).
  5. The result represents the equivalent constant growth rate.
Formula used
Geometric Mean = (x₁ × x₂ × ... × xₙ)^(1/n) Equivalently: exp(Σ ln(xᵢ) / n) All values must be positive.

Example Calculation

Result: ≈ 8.32

Product = 4 × 9 × 16 = 576. Cube root of 576 = 576^(1/3) ≈ 8.32. The geometric mean is less than the arithmetic mean (9.67) as always.

Tips & Best Practices

  • The geometric mean is always ≤ the arithmetic mean (AM-GM inequality).
  • For investment returns, convert percentages to growth factors (1 + r/100).
  • The geometric mean is undefined for negative or zero values.
  • CAGR (compound annual growth rate) is a geometric mean.
  • Use the log method for very large products to avoid overflow.
  • The geometric mean of 1.10 and 0.90 is about 0.995, showing a slight net loss.

Geometric Mean in Finance

The geometric mean return is the only correct average for compounded returns. If a fund gains 100% then loses 50%, the arithmetic mean return is +25% but the geometric mean is 0%—you ended where you started.

Geometric Mean in Science

Biologists use the geometric mean for population growth rates. Chemists use it for reaction rate averages. The geometric mean is natural whenever data spans multiple orders of magnitude.

Computing Large Products

To avoid numerical overflow, compute the geometric mean in log space: exp(average of ln(xᵢ)). This is numerically stable even for very large or very small numbers.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • The geometric mean is the nth root of the product of n values. It represents the central tendency of multiplicative data like growth rates and ratios.