Exercises — Box-and-whisker plots — quartiles, IQR
Before we start, one shared reminder of the whole toolkit, from the ground up — no symbol used before its meaning is fixed.
See Box-and-whisker plots — quartiles, IQR for the full build-up of every idea used here.
Level 1 — Recognition
L1·Q1
The box plot below is drawn on a number line. Read off, straight from the picture: the median, , , the two whisker ends, and any outlier.

Recall Solution
Reading the marked positions on the axis:
- Left whisker end (smallest non-outlier)
- Box left edge
- Line inside box
- Box right edge
- Right whisker end (largest non-outlier)
- Lone dot beyond the right whisker outlier
That is the entire skill of L1: a box plot is a map, and each landmark has one meaning. From these we can also read .
L1·Q2
For the sorted list (, odd), name the value that is and say which values form the lower half.
Recall Solution
is odd, so is the single middle value at position , giving the 3rd value . The lower half = values below the median position = (the median belongs to neither half because is odd).
Level 2 — Application
L2·Q1
Compute and IQR for ().
Recall Solution
Sort: . Median: position gives value . Lower half ( odd, first 4, median excluded): its median . Upper half (last 4): median . IQR .
L2·Q2
Data (sorted): (). Find the five-number summary (min, , , , max) and the IQR.
Recall Solution
is even, so we split the list into the first values and the last values. Median: even , average of the 4th & 5th values . Lower half (first 4): . Upper half (last 4): . Five-number summary: min , , , , max . IQR .
L2·Q3
Find the outlier fences for the data in L2·Q2, then say where each whisker ends.
Recall Solution
. Lower fence . Upper fence . Every value lies between and , so no outliers. Whiskers reach the extreme data points: left whisker to , right whisker to (not to the fences or ).
Level 3 — Analysis
L3·Q1
Data (sorted): (). Show numerically that the IQR barely changes if you delete the , but the range collapses. Explain what this reveals.
Recall Solution
With the : median ; lower half ; upper half . IQR . Range . Delete the (): ; median ; lower half ; upper half . IQR . Range . Reveal: the IQR stayed at (unchanged), while the range crashed from to . The range is built from the two most extreme points, so one wild value dominates it; the IQR uses only the inner quartiles, so it is robust. This is exactly the point of Outliers and Robust Statistics and Range and Spread.
L3·Q2
For (L2·Q1: ), compare the gap below the median () to the gap above (). What does this asymmetry say about the shape of the data?
Recall Solution
Lower gap . Upper gap . The upper gap is larger, so the box's right half is wider than its left half. A longer stretch on the high side means values are more spread out above the median, so the distribution is right-skewed (a tail toward large values). This is how a box plot reveals Skewness without any formula.
Level 4 — Synthesis
L4·Q1
You are told a data set of has , , and exactly one outlier on the high side. Its sorted values are Find the smallest integer that makes the last value a genuine upper outlier, and state where the right whisker then ends.
Recall Solution
. Upper fence . A point is an outlier when it is strictly greater than the fence: . The smallest integer is . With , the largest value inside the fence is , so the right whisker ends at and is drawn as a lone dot. (Check: we must keep as given. Changing only the last value doesn't move : upper half is , whose median is the middle value regardless of how large is — consistent.)
L4·Q2
Construct a 7-value data set (integers) whose median is , whose IQR is , and which has no outliers. Then verify your set.
Recall Solution
Design plan: odd means drop the median from the halves. Need , and . Pick (difference ). Lower half (3 values) must have median ; upper half (3 values) median . A valid set: . Verify: sorted ✓. Median position gives ✓. Lower half has median ✓. Upper half has median ✓. IQR ✓. Fences: lower ; upper . All data lie in , so no outliers ✓. (Many answers exist; any set matching the three targets is correct.)
Level 5 — Mastery
L5·Q1 (degenerate / edge case)
Consider the data (, all identical). Compute the five-number summary, the IQR, and the fences. What does the box plot look like?
Recall Solution
Sorted (already): all . Median . Lower half . Upper half . . Fences: lower ; upper . Both fences sit exactly at . The plot: the box has zero width (a single vertical line at ), median line on top of it, whiskers of length zero. Every point equals , which is on (not beyond) the fence, so nothing is flagged. A zero IQR is the honest picture of "no spread at all."
L5·Q2 (four-value halves & tie-breaking)
Data (sorted): (). Find the five-number summary, IQR, fences, list any outliers, and state both whisker ends.
Recall Solution
Median: even , average of 5th & 6th . Lower half (first 5): median (3rd) . Upper half (last 5): median (3rd) . IQR . Fences: lower ; upper . All values lie within , so no outliers. Whiskers: left to (min), right to (max). Notice the median is a value that doesn't even appear in the data — that's fine, a median is a position-based cut point, not required to be an observation. This distribution is clearly bimodal (a low clump and a high clump), yet the summary handles it cleanly. See Percentiles and Quantiles.
L5·Q3 (reverse-engineering from a summary)
A report states: min , , median , , max , and there is at least one outlier. Prove an outlier must exist and identify which extreme is the offender.
Recall Solution
. Upper fence . Lower fence . The max , so it lies beyond the upper fence and is an outlier (the offender is on the high side). The min satisfies , so the low end is fine. Thus an outlier must exist, and it is the large value near . We can't recover the exact data, but the summary alone forces this conclusion — the power of the five-number summary as a compact fingerprint.
Recall checklist
Connections
- Box-and-whisker plots — quartiles, IQR — the parent recipe these drill.
- Median and Measures of Central Tendency — every quartile is a median.
- Range and Spread — contrasted with IQR in L3·Q1.
- Outliers and Robust Statistics — the fence rule throughout L2–L5.
- Percentiles and Quantiles — quartiles as the 25/50/75 cut points.
- Skewness — read from half-widths in L3·Q2.
- Normal Distribution — origin of the multiplier.