Mean vs Median
Mean and median are both measures of the center of a dataset, but they tell you subtly different things. The mean is the arithmetic average — add everything up and divide. The median is the middle value when data is sorted. In skewed distributions (like income or house prices), they can differ dramatically — and choosing the wrong one leads to misleading conclusions.
Mean (Average)
The mean is calculated by summing all values and dividing by the count. It uses every value in the dataset, which makes it sensitive to extreme outliers.
Mean = Σx / n- •Sum of all values ÷ number of values
- •Uses every data point in the calculation
- •Pulled toward outliers (high or low extremes)
- •Best for symmetric, normally distributed data
- •The most commonly taught "average"
Median
The median is the middle value of a sorted dataset. For an odd count of values, it is the center value; for an even count, it is the average of the two center values. It is not affected by outliers.
Median = middle value of sorted data- •Middle value of a sorted dataset
- •Not affected by extreme outliers
- •Better for skewed distributions
- •Used for income, home prices, and wealth data
- •Half of values fall above it, half below
Key Differences
| Aspect | Mean (Average) | Median |
|---|---|---|
| Calculation | Sum ÷ count | Middle value of sorted list |
| Affected by Outliers | Yes (strongly) | No (resistant) |
| Best Distribution | Symmetric / normal | Skewed / outlier-prone |
| Income Data (US 2023) | Mean ~$83k (pulled by rich) | Median ~$59k (typical worker) |
| Easy to Compute Mentally | Yes (add and divide) | Requires sorting first |
| Influenced by Every Value | Yes | No (only middle values matter) |
When to Use Each
Use the mean when your data is roughly symmetric and has no extreme outliers: test scores, heights, temperatures. Use the median when your data is skewed or has outliers: income, house prices, wealth, or any data with a long tail. When a news report says "average income," check whether they mean mean or median — it matters a lot.
Frequently Asked Questions
Why is median income lower than mean income?
Income distributions are right-skewed — most people earn moderate amounts while a small number of very high earners pull the average up dramatically. The median reflects a typical person's income better because it ignores the billionaires at the top. In 2023, US mean household income (~$83k) was significantly higher than median household income (~$59k) for exactly this reason.
Can the mean and median ever be equal?
Yes — in a perfectly symmetric distribution, such as a normal (bell curve) distribution, the mean and median are identical. They also match if your dataset is perfectly symmetric around the center value.
Which is better: mean or median?
Neither is universally better — it depends on the data and the question. For symmetric data without outliers, the mean uses all information and is often preferred. For skewed data or data with outliers, the median gives a more representative picture of a "typical" value. Many analysts report both.