๐Ÿ“Š STATISTICS

Mean, Median, and Mode: Explained with Real-World Examples

๐Ÿ“… January 2025โฑ 7 min readโœ๏ธ CalcWise Pro Team
โšก Quick Summary

Mean = sum รท count (the arithmetic average). Median = the middle value when sorted. Mode = the most frequently occurring value. Each serves a different purpose in data analysis.

What Are Measures of Central Tendency?

Measures of central tendency are statistical tools that describe a "typical" or "central" value in a dataset. Instead of reporting every single data point, you can summarize a whole dataset with one representative number. The three most common measures are mean, median, and mode.

Understanding which measure to use โ€” and when โ€” is a fundamental data literacy skill used in science, business, education, economics, and everyday life.

The Mean (Arithmetic Average)

The mean is what most people think of when they hear the word "average." It is calculated by adding all values and dividing by the count.

Mean (xฬ„) = Sum of all values รท Number of values
xฬ„ = (xโ‚ + xโ‚‚ + xโ‚ƒ + ... + xโ‚™) / n

Worked Example

Test scores: 72, 85, 90, 68, 95, 78, 82

Sum = 72+85+90+68+95+78+82 = 570
Count = 7
Mean = 570 รท 7 = 81.43

When to Use the Mean

  • Data is symmetrically distributed (no extreme outliers)
  • You want to represent the "expected" value for future predictions
  • Calculating GPA, average speed, average temperature, average sales

Weakness of the Mean

The mean is sensitive to outliers โ€” extreme values that skew the result.

Example: Salaries at a company: $30k, $35k, $32k, $40k, $500k (CEO). Mean = $127.4k. This is misleading โ€” the "typical" employee earns far less.

The Median (Middle Value)

The median is the middle value when data is arranged in order. It divides the dataset exactly in half โ€” 50% of values fall below it, 50% above it.

Odd count: Median = middle value
Even count: Median = (value at n/2 + value at n/2+1) / 2

Worked Examples

Odd count: Dataset: 3, 7, 12, 18, 25
Sorted: 3, 7, 12, 18, 25 โ†’ Median = 12

Even count: Dataset: 4, 8, 15, 16
Sorted: 4, 8, 15, 16 โ†’ Median = (8+15)/2 = 11.5

When to Use the Median

  • Data has outliers or extreme values
  • Income, house prices, or any skewed data
  • When you want the "typical" value unaffected by extremes
  • Ordinal data (rankings, survey ratings)
Real-World Example: US household income. The mean is pulled up by billionaires, making it seem high. The median ($74,580 in 2022) better represents a typical household's actual income.

The Mode (Most Frequent Value)

The mode is the value that appears most frequently in a dataset. Unlike mean and median, mode can be used with non-numerical (categorical) data.

Mode = value(s) that appear most often in the dataset

Types of Mode

Unimodal
One mode: {1,2,2,3,4} โ†’ Mode = 2
Bimodal
Two modes: {1,1,2,2,3} โ†’ Modes = 1,2
No mode
All appear once: {2,4,6,8} โ†’ No mode

When to Use the Mode

  • Categorical data: most popular shoe size, most common eye color
  • Finding the most common response in a survey
  • Inventory management: which product sells most
  • Understanding the most typical outcome

Comparing Mean, Median, and Mode โ€” Side by Side

PropertyMeanMedianMode
DefinitionSum รท countMiddle valueMost frequent
Affected by outliers?Yes (strongly)NoNo
Works with categories?NoNoYes
Unique value?Always oneAlways oneCan be multiple
Best forNormal data, predictionsSkewed data, incomeCategories, popularity

Comprehensive Example โ€” All Three Together

Students' test scores: 55, 70, 72, 72, 75, 80, 82, 85, 90, 99

Mean = (55+70+72+72+75+80+82+85+90+99) / 10 = 780/10 = 78
Median = (75+80)/2 = 77.5 (average of 5th and 6th)
Mode = 72 (appears twice, all others once)

All three are close here (78, 77.5, 72) โ€” this suggests the data is fairly symmetrically distributed. When mean and median differ greatly, it signals skewness.

Skewed Distributions: Why Mean โ‰  Median

In a right-skewed distribution (long tail to the right), the mean is pulled higher than the median. This is typical of income, house prices, and wealth data โ€” a few very high values drag the mean up.

In a left-skewed distribution (long tail to the left), the mean is pulled lower than the median. This is seen in age at death in developed countries โ€” most people live long lives, but some die young.

Right-skewed: Mean > Median > Mode
Symmetric: Mean โ‰ˆ Median โ‰ˆ Mode
Left-skewed: Mode > Median > Mean

Use Our Free Statistics Calculators

Practice these calculations with our free tools:

ฮผMean Calculator ใ€ฐMedian Calculator ๐Ÿ“ˆMode Calculator

Frequently Asked Questions

Can the mean, median, and mode all be the same value? โ–ผ
Yes! In a perfectly symmetrical (normal) distribution, all three measures of central tendency are identical. For example, in {2, 4, 6, 8, 10}: Mean = 6, Median = 6, and no repeated mode โ€” though mean = median = 6.
When should I use median instead of mean? โ–ผ
Use median whenever your data is skewed or has outliers. Examples: income data, house prices, response times, test scores with outliers. The median is more "robust" โ€” it resists the distorting influence of extreme values.
What if there is no mode? โ–ผ
A dataset has no mode if all values appear the same number of times (typically once). For example, {1, 2, 3, 4, 5} โ€” every number appears once, so there is no mode. This is perfectly valid.
What is the relationship between mean, median, and standard deviation? โ–ผ
Standard deviation measures spread around the mean. When mean and median are close, the distribution is roughly symmetric and standard deviation meaningfully describes variability. When they diverge (skewed data), standard deviation can be misleading because it's based on the mean.

Related Statistics Calculators