Skip to main content

Learning outcomes

  • define percentile and quartile
  • identify Q1, Q2, and Q3
  • 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 about p% of observations lie.
Example idea:
  • 25th percentile means roughly 25% of observations are at or below that point.

Quartiles

  • Quartiles divide ordered data into four parts.
Important quartiles:
  • Q1 = first quartile = 25th percentile
  • Q2 = second quartile = median = 50th percentile
  • Q3 = third quartile = 75th percentile

Interquartile range

  • IQR = Q3 - Q1
What it measures:
  • 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
Median:
  • Q2 = (8 + 10)/2 = 9
Lower half:
  • 2, 4, 6, 8 -> Q1 = (4 + 6)/2 = 5
Upper half:
  • 10, 12, 14, 16 -> Q3 = (12 + 14)/2 = 13
IQR:
  • 13 - 5 = 8

Exam hints and traps

  • Quartiles require ordered data.
  • Q2 is 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
  1. Find Q2.
  2. Find Q1.
  3. Find Q3.
  4. Find IQR.

Answer key

  1. (7 + 9)/2 = 8
  2. (3 + 5)/2 = 4
  3. (11 + 13)/2 = 12
  4. 12 - 4 = 8