Example 1: Mean and median of an even-length list
A student records the number of pages read on each of eight days: 7, 12, 9, 15, 9, 20, 11, 13. Find the mean and the median of the data set.
Show solution
- Add the values: 7 + 12 + 9 + 15 + 9 + 20 + 11 + 13 = 96.
Pair values that make round numbers to avoid slips: 7 + 13 = 20, 9 + 11 = 20, and 12 + 9 + 15 + 20 = 56, so the total is 20 + 20 + 56 = 96.
- Divide by the count: mean = 96 / 8 = 12.
- Sort the list from least to greatest: 7, 9, 9, 11, 12, 13, 15, 20.
The median is a position, so the order is not optional. Skipping this step is the single most common median error.
- With 8 values the middle is position (8 + 1) / 2 = 4.5, so the median is the average of the 4th and 5th values, which are 11 and 12.
- Average them: median = (11 + 12) / 2 = 11.5.
The median does not have to be a value that appears in the list.
- Sanity check: the mean, 12, is slightly above the median, 11.5, which fits a list whose largest value, 20, sits farther above the center than the smallest value, 7, sits below it.
Answer: The mean is 12 and the median is 11.5.