When someone says "the average", they almost always mean the mean — add everything up, divide by how many. But there are three different averages, and each tells a different story about the same numbers. Pick the wrong one and you can paint a completely false picture without a single incorrect calculation.
The three averages, defined
- Mean — add all the values and divide by the count. The "balancing point" of the data.
- Median — sort the values and take the middle one (or the average of the two middle ones). The "typical" value that half fall below and half above.
- Mode — the value that appears most often. The most common outcome.
Data: 2, 4, 4, 4, 5, 5, 7, 9 Mean = (2+4+4+4+5+5+7+9) / 8 = 5 Median = middle of sorted list = (4+5)/2 = 4.5 Mode = 4 (appears three times)
Why the choice matters: the salary example
Imagine a small company with nine employees earning $40k each and one founder earning $460k. The mean salary is $82k — a number that describes nobody in the building. The median salary is $40k — the honest "typical" wage. This is exactly why income and house-price statistics almost always use the median: a few extreme values (outliers) drag the mean away from reality.
When to use each one
- Mean — symmetric data with no wild outliers, and when you need the total (mean × count = sum).
- Median — skewed data, incomes, prices, or any time a few extreme values would distort the picture.
- Mode — categorical data ("most popular size"), or when you care about the single most frequent value.
Calculate all three at once
You rarely need to pick blind — compute all three and compare. If the mean and median are close, your data is fairly symmetric and either works. If they are far apart, that gap is itself the insight: it tells you the data is skewed, and the median is the number to trust. Paste your numbers into the Average Calculator to get the mean, median and mode together, then use the one that answers your actual question.
And if you want to know not just the centre but how spread out the values are, that is what standard deviation measures — a natural next step once you know your average.