Learning outcomes
- define percentile and quartile
- identify
Q1,Q2, andQ3 - compute interquartile range
- explain why IQR is useful in describing spread
Percentiles
- Percentiles divide ordered data into 100 parts.
- The
pth percentile is a value below which aboutp%of observations lie.
- 25th percentile means roughly 25% of observations are at or below that point.
Quartiles
- Quartiles divide ordered data into four parts.
Q1= first quartile = 25th percentileQ2= second quartile = median = 50th percentileQ3= third quartile = 75th percentile
Interquartile range
IQR = Q3 - Q1
- spread of the middle 50% of the data
Why IQR is useful
- It is less affected by extreme values than total range.
- It gives a better picture of the central spread.
Example
Ordered data:2, 4, 6, 8, 10, 12, 14, 16
Q2 = (8 + 10)/2 = 9
2, 4, 6, 8->Q1 = (4 + 6)/2 = 5
10, 12, 14, 16->Q3 = (12 + 14)/2 = 13
13 - 5 = 8
Exam hints and traps
- Quartiles require ordered data.
Q2is the median.- IQR is subtraction, not division.
- Percentiles describe position, not frequency count alone.
Quick practice
Data:1, 3, 5, 7, 9, 11, 13, 15
- Find
Q2. - Find
Q1. - Find
Q3. - Find IQR.
Answer key
(7 + 9)/2 = 8(3 + 5)/2 = 4(11 + 13)/2 = 1212 - 4 = 8
