01 Key Concepts
Five-Number Summary
Minimum, first quartile (Q1), median (Q2), third quartile (Q3), and maximum — the five values a box plot displays.
Quartiles
Q1 is the median of the lower half of the data; Q3 is the median of the upper half. Together with the median, they divide the data into four equal parts.
Interquartile Range (IQR)
IQR = Q3 - Q1, representing the spread of the middle 50% of the data.
The Box and Whiskers
The box spans from Q1 to Q3; a line inside marks the median. Whiskers extend to the minimum and maximum, excluding outliers.
Identifying Outliers
A common rule: any value below Q1 - 1.5*IQR or above Q3 + 1.5*IQR is flagged as an outlier and plotted separately.
02 Key Formulas
- IQR = Q3 - Q1
- Outlier bounds: below Q1 - 1.5*IQR or above Q3 + 1.5*IQR
03 Solved Examples
- Minimum = 2, Maximum = 14.
- Median (middle of 7 values) = 8.
- Lower half (below median): 2,4,6; Q1 = median of these = 4.
- Upper half (above median): 10,12,14; Q3 = median of these = 12.
- IQR = Q3 - Q1 = 12 - 4.
- Lower bound = Q1 - 1.5*IQR = 4 - 1.5*8 = 4 - 12 = -8.
- Upper bound = Q3 + 1.5*IQR = 12 + 1.5*8 = 12 + 12 = 24.
04 Practice Questions
📄 Box Plots — Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.