Average Calculator
Mean, median, mode, min, max, and sum for any list of numbers
| Mean (average) | 16 |
| Median | 15 |
| Mode | 15 |
| Minimum | 12 |
| Maximum | 20 |
| Count | 5 |
| Sum | 80 |
Frequently Asked Questions
Mean, median, and mode all answer the question "what's typical in this dataset" but can give meaningfully different answers for the same list of numbers — especially when the data contains outliers, which is exactly the situation where choosing the wrong "average" measure misleads rather than informs.
Why mean, median, and mode diverge
The mean (sum divided by count) is sensitive to every value in the dataset, including extreme outliers — a single very large or very small number can pull the mean noticeably away from where most of the data actually clusters. The median (the middle value when sorted) is far less sensitive to outliers, since it only depends on the data's ordering, not the magnitude of extreme values — this is why median is often the more representative "typical value" for datasets with skewed distributions (income data is a classic example, where a few very high earners pull the mean up well above where most people's actual income sits). The mode (most frequently occurring value) answers a different question entirely — not "what's central" but "what's most common" — and can differ substantially from both mean and median, especially in datasets without a strong central tendency.
A worked example
A small dataset of mostly similar values plus one extreme outlier shows a mean pulled noticeably toward the outlier, while the median stays close to where most of the data actually sits — this divergence is exactly why "average" claims in casual conversation (which usually mean the mean) can misrepresent a dataset that has real outliers, and why checking median alongside mean is a useful sanity check.
How this connects to your other data calculations
For datasets where understanding spread (not just central tendency) matters, the Standard Deviation Calculator quantifies how much individual values typically deviate from the mean — pairing average and standard deviation gives a much fuller picture of a dataset than either alone.
Common mistakes
Reporting only the mean for a dataset that has significant outliers or skew, without checking median as well, is the most common mistake — for genuinely skewed data, the mean alone can give a misleading impression of what's "typical," and reporting both figures (or median alone, for heavily skewed data) is more honest than mean alone.