Average Calculator Guide: Mean, Median, Mode Explained (2026)
Quick Answer
- *Mean: sum of values ÷ count. Most common “average.”
- *Median: middle value when sorted. Resistant to outliers.
- *Mode: most frequent value. Best for categorical data.
- *Use median for skewed data (income, home prices) and mean for symmetric data.
The Three Averages
Mean (Arithmetic Average)
Formula: Mean = (x₁ + x₂ + ... + xₙ) ÷ n
Add all values, divide by the count. For ((4, 7, 9, 12, 18): Mean = 50 ÷ 5 = 10. The mean uses every data point, making it sensitive to outliers. Change 18 to 180 and the mean jumps from 10 to 42.4.
Median
Sort the data and find the middle value. For odd counts, it's the center number. For even counts, average the two center numbers.
For ((4, 7, 9, 12, 18): Median = 9 (the 3rd of 5 values). For ((4, 7, 9, 12): Median = (7 + 9) ÷ 2 = 8.
Mode
The value that appears most often. For ((2, 3, 3, 5, 7, 7, 7, 8): Mode = 7 (appears 3 times). A dataset can be bimodal (two modes) or have no mode if all values are unique.
When to Use Each
| Measure | Best For | Weakness |
|---|---|---|
| Mean | Symmetric data, calculations | Skewed by outliers |
| Median | Skewed data, rankings | Ignores magnitude of extremes |
| Mode | Categorical data, popularity | May not exist or may not be unique |
Weighted Averages
When values have different importance, use a weighted mean: Weighted Mean = Σ(value × weight) ÷ Σ(weights)
A course grade: Homework (30%) = 92, Midterm (30%) = 78, Final (40%) = 85. Weighted average = (92 × 0.30) + (78 × 0.30) + (85 × 0.40) = 27.6 + 23.4 + 34.0 = 85.0.
Geometric Mean
The nth root of the product of n values. Essential for growth rates and returns. If an investment returns +20%, −10%, +30% over three years:
- Arithmetic mean: (20 + (−10) + 30) ÷ 3 = 13.3%
- Geometric mean: (1.20 × 0.90 × 1.30)^(1/3) − 1 = 12.4%
The geometric mean is always lower and gives the true compound growth rate.
Harmonic Mean
The reciprocal of the mean of reciprocals. Used when averaging rates. If you drive 60 mph for one leg and 40 mph for the return leg (same distance), the average speed isn't 50 mph — it's the harmonic mean: 2 ÷ (1/60 + 1/40) = 48 mph.
The Outlier Problem
Consider US household income data. A few billionaires pull the mean far above what most people earn. The mean household income is roughly $105,000, but the median is about $75,000. The median better represents the typical household because it ignores extreme values at the top. This is why economists almost always report median income.
Calculate mean, median, and mode instantly
Try the Free Average Calculator →Frequently Asked Questions
What is the difference between mean, median, and mode?
Mean is the sum divided by count. Median is the middle value when sorted. Mode is the most frequent value. For {1, 2, 2, 3, 100}: mean = 21.6, median = 2, mode = 2.
When should you use median instead of mean?
When data has outliers or is skewed. Income, home prices, and response times are classic examples where median is more representative.
What is a weighted average?
An average where values have different weights: Σ(value × weight) ÷ Σ(weights). Used in GPA calculations, portfolio returns, and course grades.
Can a dataset have more than one mode?
Yes. Two modes = bimodal. Three or more = multimodal. Equal frequency for all values = no mode. Bimodal distributions often indicate two subgroups in the data.
What is the geometric mean and when is it used?
The nth root of the product of n values. Used for growth rates and investment returns. It correctly accounts for compounding, while arithmetic mean overstates returns.