Quant Memo
Foundational

Arithmetic Versus Geometric Mean Returns

The plain average of a series of returns and the return that would actually compound to the same ending wealth are different numbers, and confusing them is one of the most common ways backtest performance gets overstated.

Prerequisites: The Risk-Return Tradeoff

Take a strategy that returns +50% in year one and −50% in year two. The plain average of those two numbers is 0% — sounds break-even. But $100 growing 50% becomes $150, and $150 falling 50% becomes $75. The strategy lost a quarter of its money over two years, not zero. The plain average — the arithmetic mean — answers a different question than the one most people actually care about, which is: what return, compounded steadily, would have produced the same ending wealth? That second number is the geometric mean, and it is always less than or equal to the arithmetic mean whenever returns vary at all.

The two means, defined in words

The arithmetic mean of nn returns r1,,rnr_1, \dots, r_n is just the ordinary average:

rˉA=1ni=1nri.\bar{r}_A = \frac{1}{n}\sum_{i=1}^n r_i .

In plain English: add up the returns and divide by how many there are — the number you'd report if someone asked "what did this strategy return per period, on average?" without thinking further.

The geometric mean is the constant per-period return that compounds to the same ending value as the actual sequence:

rˉG=[i=1n(1+ri)]1/n1.\bar{r}_G = \left[\prod_{i=1}^n (1+r_i)\right]^{1/n} - 1 .

In plain English: multiply together each period's growth factor, take the nn-th root, and subtract 1 — the single repeated return that would have gotten you from start to finish exactly as the real, varying sequence did.

Why they diverge: volatility eats the difference

The gap between the two means widens with volatility. A useful approximation is:

rˉGrˉAσ22,\bar{r}_G \approx \bar{r}_A - \frac{\sigma^2}{2} ,

where σ2\sigma^2 is the variance of returns. In plain English: the more a strategy's returns bounce around, the further its true compounded growth rate falls below its simple average return — this gap is sometimes called the "volatility drag," and it's not a rounding error, it's a real cost of variance on compounded wealth.

Worked example: the +50%/−50% strategy

Arithmetic mean: rˉA=0.50+(0.50)2=0%\bar{r}_A = \frac{0.50 + (-0.50)}{2} = 0\%. Geometric mean: rˉG=(1.50)(0.50)1=0.75113.4%\bar{r}_G = \sqrt{(1.50)(0.50)} - 1 = \sqrt{0.75} - 1 \approx -13.4\%. Over two years, compounding −13.4% twice: (10.134)20.75(1-0.134)^2 \approx 0.75, matching the actual $75 ending value from $100. The arithmetic mean of 0% would tell an investor the strategy is a wash; the geometric mean of −13.4% correctly reports that it's actually losing money at a compounded 13.4% per year.

\$150 \$100 \$50 actual path (ends at \$75) arithmetic mean (0%) implies flat \$100
The actual +50%/−50% path ends at \$75, but a naive projection using the 0% arithmetic mean implies wealth stays flat at \$100 — only the geometric mean's −13.4% correctly describes the compounded outcome.

What this means in practice

Whenever a backtest reports a strategy's "average return," check which mean it is: the arithmetic mean is the right number for estimating a single period's expected return (useful for risk models and optimization), while the geometric mean is the right number for describing actual realized, compounded performance over multiple periods. Reporting the arithmetic mean as if it described compounded growth is one of the most common — and most misleadingly flattering — errors in presenting backtest results, especially for volatile strategies where the gap between the two can be large.

The arithmetic mean answers "what's the average return per period," while the geometric mean answers "what constant return would compound to the actual ending wealth" — the geometric mean is always lower when returns vary, and the gap widens with volatility, so quoting arithmetic mean returns for a compounded strategy overstates its real performance.

Never annualize a multi-period backtest by simply multiplying the arithmetic mean return by the number of periods — that answer describes a hypothetical world with no volatility drag. Compound the geometric mean instead, or the reported annualized return will systematically overstate what the strategy actually delivered.

Related concepts

Practice in interviews

Further reading

  • Bodie, Kane, Marcus, Investments, ch. 24
ShareTwitterLinkedIn