Solved: 0
Median (Central Value)
Learning Topics
📖 Learning Guide - Median (Central Value)
1. What is the Median?
The median is the exact middle value in a dataset when all numbers are ordered from least to greatest. It divides the data into two equal halves: at least 50% of the numbers are less than or equal to the median, and at least 50% are greater than or equal to it.
Notation (Subscripts): When a dataset of values is arranged in ascending order (), we use subscript notation to denote the number at position in the sorted list (e.g. is the first and smallest value, while is the last and largest).
Notation (Subscripts): When a dataset of values is arranged in ascending order (), we use subscript notation to denote the number at position in the sorted list (e.g. is the first and smallest value, while is the last and largest).
2. The Pair Crossing Elimination Method
To visually locate the median without manual index math, arrange the numbers in ascending order and pair off the smallest and largest remaining numbers from the outside inward until the center is reached.
📊Interactive Sorting & Outer-Pair Elimination Model
Raw (Unsorted) Dataset:[19, 7, 14, 12, 16]
Sorted Dataset (Ascending):
#17
#212
#314
Median
#416
#519
🎯 Center Isolated! The median is 14.
3. Odd Dataset Length ( is Odd)
When a dataset has an odd number of values (), there is exactly one number in the exact middle. Its position in the sorted list is given by the formula .
4. Even Dataset Length ( is Even)
When a dataset has an even number of values (), there is no single middle element. Instead, two numbers share the center at positions and . The median is the arithmetic average (mean) of these two numbers.
5. Median vs. Mean (Outlier Resistance)
Why do statisticians use both mean and median? The Mean is sensitive to extreme values (outliers), while the Median is resistant (robust). For example, if someone in a neighborhood earns $10,000,000, the mean income spikes drastically, while the median remains steady, reflecting a typical resident.
6. Real-World Worked Examples
Example 1: Odd Dataset (Quiz Scores)
Raw quiz scores: ().
1. Sort: .
2. Middle index: rd value.
3. Median: .
1. Sort: .
2. Middle index: rd value.
3. Median: .
Example 2: Even Dataset (Running Times)
Sprint times in seconds: ().
1. Sort: .
2. Two middle values: 3rd () and 4th ().
3. Average: .
1. Sort: .
2. Two middle values: 3rd () and 4th ().
3. Average: .
Example 3: Impact of an Extreme Outlier
Consider weekly savings: . Median = , Mean = .
If the last person saved instead of :
If the last person saved instead of :
- New Mean: (skewed by outlier).
- New Median: Still (unaffected).
Learning Topics