Compute the five-number summary: minimum, Q1,
median, Q3, and maximum of a data set.
Example
Sort the data and compute min, quartiles, median, and max.
highlighted = computed this step
Step 1 — Data
List the data values.
pos12345678x104142128166
Step 2 — Sort
Sort the data first.
pos12345678x246810121416
Step 3 — Min and max
Read the minimum and maximum.
min=2max=16
Step 4 — Median
Average the two middle values.
median=(8+10)/2=9
Step 5 — Q1
Average the middle of the lower half.
Q1=(4+6)/2=5
Step 6 — Q3
Average the middle of the upper half.
Q3=(12+14)/2=13
Step 7 — Summary
State the five-number summary.
(2,5,9,13,16)
five-number-summaryFive-number summary: Min, Q1, Median, Q3, Max. Steps: 1. Sort the data. 2. Identify Min and Max. 3. Find Median (middle value or average of two middles). 4. Q1 = median of the lower half. 5. Q3 = median of the upper half.