statistics basics
Mean, Median, and Mode
You should know: variables and expressions, fractions and decimals
Overview
The mean, median, and mode are measures of central tendency -- numbers that summarize where data tends to cluster. The mean (average) is the sum divided by count. The median is the middle value when sorted. The mode is the most frequent value. Each captures a different aspect of 'typical.'
Intuition
Mean = fair share: if you split total equally. Median = middle person: line everyone up, pick the center. Mode = most popular: which value appears most often. If a billionaire joins a room of average-income people, the mean income jumps dramatically but the median barely changes -- the median is more robust to outliers.
Formal Definition
For a dataset {x_1, ..., x_n}: Mean = (x_1 + ... + x_n)/n. Median: sort the data; if n is odd, median is the middle value x_{(n+1)/2}; if n is even, median is the average of x_{n/2} and x_{n/2+1}. Mode: the value(s) occurring with highest frequency (a dataset may have no mode, one mode, or several modes).
Notation
| Notation | Meaning |
|---|---|
| Sample mean | |
| Median | |
| Mode |
Theorems
Worked Examples
- 1
Sort: 3, 3, 3, 5, 7, 8, 9 (7 values).
- 2
Mean: sum = 38, count = 7.
- 3
Median: middle (4th) value is 5.
- 4
Mode: 3 appears 3 times (most frequent).
✓ Answer
Mean ≈ 5.43, Median = 5, Mode = 3.
Practice Problems
Find the mean of: 4, 8, 6, 12, 10.
Common Mistakes
Forgetting to sort the data before finding the median.
Always sort first. The median is the middle of the sorted list, not the middle of the original order.
Quiz
Historical Background
The arithmetic mean has been used since antiquity for practical purposes. Francis Galton popularized the median in the late 19th century as a robust alternative to the mean. The concept of mode was formalized in the early 20th century. These three measures became fundamental to descriptive statistics.
- 1880s
Francis Galton develops and promotes the median as a robust central measure
Francis Galton
Summary
- Mean = sum / count. Sensitive to outliers.
- Median = middle value of sorted data. Robust to outliers.
- Mode = most frequent value. Can be none, one, or several.
- For symmetric data, mean = median = mode approximately.
References
- BookLarson, R. Pre-Algebra. Holt McDougal, 2010.
Mathematics