The median of the list is . What is the mean?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
The list is already sorted, so the median is the fifth entry n+6; the mean is n plus the average of the offsets, 63/9 = 7.
Solution
The nine entries are listed in increasing order, so the median is the fifth one, . Setting gives .
For the mean, add the offsets: . The total of the list is , so the mean is
The answer is .
Why this works
Every entry is plus a constant, so the mean is plus the mean of the constants and the median is plus the median of the constants. Shifting every data value by the same amount shifts the mean and median by exactly that amount; recognizing this saves rewriting the whole list.
Alternative approach
Skip entirely: the median offset is and the mean offset is , so the mean is exactly more than the median, i.e. .
The trap
Stopping at n = 4 or answering the median 10 instead of the mean, or miscounting which entry is the middle one.
Common mistakes
- Stopping at n = 4 or answering the median 10 instead of the mean, or miscounting which entry is the middle one.
- Adding the offsets incorrectly (there are nine terms and the sum is , not or ).
Techniques
Set up the equation/formula and compute; no special trick needed