Why Averaging Averages Gives the Wrong Answer
The average of several group averages equals the true overall average only when every group has the same size — otherwise you must weight each group's average by its size, or you silently get the wrong number.
A trading desk has two teams. Team A trades 90 contracts a day and averages $10 P&L per contract. Team B trades 10 contracts a day and averages $100 P&L per contract. What's the desk's average P&L per contract? "Average the two averages" gives , i.e. $55 — but that's wrong, and not by a rounding error. The desk actually made dollars across contracts, an average of $19 per contract, less than half the naive answer. Averaging averages silently assumes every group is the same size, and here they aren't even close.
The idea: weight by group size, not by group count
The true overall average of items averaging and items averaging is the weighted average:
In plain English: you're re-deriving the total (each group's average times its own size) and dividing by the true total count — not treating the two group averages as equally-weighted data points. Simply averaging and is only correct in the special case , where the weights happen to cancel out to each. The moment group sizes differ, "average of averages" quietly overweights the smaller group and underweights the larger one.
Worked example 1: the desk P&L, done correctly
Using the weighted formula: , i.e. $19. Team A, despite the lower per-contract average, dominates the true blended number because it trades nine times the volume — the naive $55 answer treated Team B's ten contracts as if they carried the same weight as Team A's ninety, which overstates Team B's influence by 9×.
Worked example 2: the classic "average speed" version
A car drives from A to B at 30 mph and returns from B to A at 60 mph, the same distance each way. What's the average speed for the round trip? Averaging the two speeds gives mph — wrong, because the car spends more time at the slower speed, not more distance. For a distance each way, the outbound leg takes hours and the return leg takes hours, so average speed mph — the harmonic mean of the two speeds, not the arithmetic mean, because time (not distance) is what's being equally split here.
Only average two group averages directly when the groups are the same size. Otherwise compute the weighted average — each group's average multiplied by its own size, summed, and divided by the total size — or you'll systematically overweight whichever group happens to be smaller.
Watch for the disguised version: "average speed," "average return per trade," or "blended yield" all secretly ask for a weighted average (by time, by trade count, by dollar exposure), and naively averaging the individual rates is one of the most common wrong answers given under interview time pressure.
Related concepts
Practice in interviews
Further reading
- Wasserman, All of Statistics, ch. 3