Three ways to describe the center
Mean, median, and mode are all measures of central tendency — each answers the question "what's typical?" in a different way. Picking the wrong one gives you a misleading picture.
Mean — the arithmetic average
Formula: add all values, divide by the count.
Mean = (x₁ + x₂ + ... + xₙ) ÷ n
Example: test scores of 70, 75, 80, 85, 90 → Mean = 400 ÷ 5 = 80.
Use the mean when your data is symmetric and has no extreme outliers. It uses every data point, which makes it precise — but that same quality makes it sensitive. One outlier can drag it far from the actual center.
Median — the middle value
Sort your data. The median is the exact midpoint. For an even count, average the two middle values.
Example: home prices of $220K, $240K, $260K, $290K, $1.8M → Median = $260K, Mean = $562K.
The median ignores how extreme the outliers are. That's why income statistics, home prices, and hospital wait times all use the median — a handful of billionaires or mansions would distort the mean completely.
Mode — the most frequent value
The mode is the only measure that works with non-numerical data.
Examples: the most common shoe size sold at a store (mode = 10), the most popular answer on a survey (mode = "Satisfied").
A data set can have no mode (every value appears once), one mode (unimodal), two modes (bimodal), or many modes. When you see a bimodal distribution, that often signals two distinct groups in your data — worth investigating further.
The quick decision rule
Symmetric data, no outliers → use mean.
Skewed data or outliers present → use median.
Categorical or count data → use mode.
Need to measure spread → pair with standard deviation (symmetric) or IQR (skewed).
When in doubt, report the median. It misleads less often.
What about range and standard deviation?
Mean and median describe center. Range and standard deviation describe spread — how scattered the values are.
Range = max − min. Fast but fragile: one outlier changes it completely.
Standard deviation measures how far each value sits from the mean, on average. A small standard deviation means the data clusters tightly; a large one means it's spread out.
For skewed data, use IQR (Q3 − Q1) instead of standard deviation. The CalcHub statistics calculator computes all of these from a single input.