"Average" gets used loosely to mean several different things, and picking the wrong one can make a dataset look more (or less) typical than it really is. Here's what each of these four measures actually calculates, when to reach for which one, and a real example where they tell noticeably different stories about the same data.
The one-line version of each
- Mean — the sum of all values, divided by how many there are. What most people mean by "average."
- Median — the middle value once the data is sorted. Unaffected by extreme values.
- Mode — the value that appears most often. The only one of the four that works on non-numeric data too.
- Standard deviation — how spread out the values are around the mean. A small number means the data is clustered tightly; a large number means it's spread wide.
A dataset where they disagree
Six people report their annual salary: $40,000, $42,000, $45,000, $41,000, $43,000, and $250,000 (the last one runs their own company). What's the "typical" salary here?
| Measure | Calculation | Result |
|---|---|---|
| Mean | (40,000+42,000+45,000+41,000+43,000+250,000) ÷ 6 | $76,833 |
| Median | Sorted: 40k, 41k, 42k, 43k, 45k, 250k — middle two averaged | $42,500 |
The mean says the "typical" salary is $76,833 — but five of the six people earn less than $46,000. The single outlier at $250,000 pulled the mean way up, even though it doesn't represent where most of the data actually sits. The median, at $42,500, is a far more honest description of what a "typical" person in this group earns. This is exactly why income statistics in the news are usually reported as medians, not means.
Mode: the odd one out
Mode doesn't measure central tendency the way mean and median do — it just finds what repeats most. Take the dataset 7, 9, 7, 3, 7, 9, 5:
7 appears three times — more than any other value — so 7 is the mode. If two values were tied for the most frequent, the dataset would have two modes (bimodal); if every value appeared exactly once, there would be no mode at all. Mode is the only one of the four measures that makes sense for non-numeric categories too — the "mode" of a list of favorite colors is simply the most commonly chosen color.
Standard deviation: how spread out is the data?
Mean and median describe the center of a dataset. Standard deviation describes how far the values typically sit from that center.
Using the salary example above (mean = $76,833):
| Type | Divisor | Result |
|---|---|---|
| Population standard deviation | ÷ 6 (n) | $77,458 |
| Sample standard deviation | ÷ 5 (n − 1) | $84,851 |
A standard deviation nearly as large as the mean itself is a strong signal that the data is spread very unevenly — exactly what you'd expect from a dataset with one extreme outlier sitting far from the rest.
Population vs. sample: which divisor to use
If your numbers represent the entire group you care about, use population standard deviation (divide by n). If your numbers are a sample drawn from a larger group you're trying to draw conclusions about, use sample standard deviation (divide by n − 1) — the smaller divisor slightly inflates the result to correct for the fact that a sample tends to underestimate the true spread of the full population.
Which measure should you actually use?
| Situation | Best measure |
|---|---|
| Data has outliers or is skewed (income, home prices, wait times) | Median |
| Data is roughly symmetric, every value should count equally | Mean |
| You want the most common category or value | Mode |
| You want to know how consistent or variable the data is | Standard deviation |
Common mistakes
- Reporting the mean on skewed data without checking the median. If the two differ a lot, the mean is being distorted by outliers and the median is the more representative figure.
- Assuming every dataset has exactly one mode. Many datasets have none (every value is unique) or several (a tie for most frequent).
- Using population standard deviation on sample data, or vice versa. The two formulas give different results, and picking the wrong one systematically over- or under-states the spread.
- Treating a low standard deviation as automatically "good." It just means the data is consistent — whether consistency is desirable depends entirely on what's being measured.
Try the calculators
Each measure has its own calculator that handles the sorting and math for you: average (mean) calculator, median calculator, mode calculator, and standard deviation calculator (with both population and sample options).
Frequently asked questions
What is the difference between mean and median?
The mean is the sum of all values divided by how many there are. The median is the middle value when the data is sorted. The mean is pulled toward extreme values (outliers); the median is not, which is why the two can differ significantly on skewed data.
When should I use median instead of mean?
Use the median when the data has outliers or is skewed — income, home prices, and wait times are classic examples. Use the mean when the data is roughly symmetric and every value should carry equal weight.
Can a dataset have more than one mode?
Yes. If two or more values are tied for the highest frequency, the dataset is multimodal and all of the tied values are modes. If every value appears exactly once, the dataset has no mode.
Should I use sample or population standard deviation?
Use population standard deviation when your data represents an entire group you care about. Use sample standard deviation when your data is a sample drawn from a larger population you're trying to estimate — it divides by n−1 instead of n to correct for the fact that a sample tends to slightly underestimate the true spread.