01 Key Concepts
Finding the Median (Odd Count)
Arrange values in order; the median is the single middle value.
Finding the Median (Even Count)
Arrange values in order; the median is the average of the two middle values.
Why the Median Resists Outliers
It only depends on the position of values, not their exact size, so one extreme value barely shifts it.
Median vs. Mean
For skewed data (like income, where a few very high earners exist), the median usually gives a more representative 'typical' value than the mean.
Median of Grouped Data
For large datasets organized into classes/intervals, the median can be estimated using cumulative frequency and interpolation.
02 Key Formulas
- Odd n: median = middle value after sorting
- Even n: median = average of the two middle values
03 Solved Examples
- The data is already sorted: 3, 7, 9, 12, 20.
- There are 5 values (odd count), so the median is the 3rd value.
- The data is sorted with 6 values (even count).
- The two middle values are 15 and 16.
- Average them: (15+16)/2.
- Mean = (10+12+14+16+500)/5 = 552/5 = 110.4.
- Median: sorted data is 10,12,14,16,500; middle value is 14.
04 Practice Questions
📄 Median — Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.