1. Five-number summary of test scores
Problem
A class of 7 students scored
2,5,7,8,9,12,15 points on a quiz. Find the five-number summary.
Ordered data: 2,5,7,8,9,12,15 The data is already in order, which we need before finding quartiles.
xmin=2,xmax=15 The minimum is the smallest value and the maximum is the largest value.
With 7 values, the median is the 4th value (the middle position).
The first quartile is the median of the lower half (2,5,7), which is the middle value 5.
The third quartile is the median of the upper half (9,12,15), which is the middle value 12.
Answer: {2,5,8,12,15}
The five values divide the dataset into sections: the bottom 25% is 2–5, the bottom 50% is 2–8, the bottom 75% is 2–12, and the top 25% is 12–15. This summary shows the data is fairly symmetric around 8.
2. Five-number summary with negative values and even count
Problem
The temperatures (in °C) over 8 days were
−3,−1,0,2,5,6,8,10. Find the five-number summary.
Ordered data: −3,−1,0,2,5,6,8,10 The data is already ordered from smallest (most negative) to largest.
xmin=−3,xmax=10 Identify the extreme values; note that the minimum is negative.
x~=22+5=3.5 With 8 values (even count), the median is the average of the 4th and 5th values (2 and 5).
Lower half: −3,−1,0,2 To find Q1, first identify the lower half (the 4 smallest values).
Q1=2−1+0=−0.5 The first quartile is the median of the lower half, the average of the 2nd and 3rd values (−1 and 0).
Upper half: 5,6,8,10 To find Q3, identify the upper half (the 4 largest values).
Q3=26+8=7 The third quartile is the median of the upper half, the average of the 2nd and 3rd values of that subset (6 and 8).
Answer: {−3,−0.5,3.5,7,10}
This dataset has negative values and an even number of points, requiring averages for all quartiles. The five-number summary reveals that temperatures ranged widely and were not centered around zero.
3. Five-number summary of crew work hours
Problem
A construction crew logged daily work hours over 8 days:
4,5,6,5,7,8,6,9 hours. Find the five-number summary to understand typical workload.
Ordered data: 4,5,5,6,6,7,8,9 Sort the hours from least to most; notice that 5 and 6 each appear twice.
xmin=4,xmax=9 The crew worked as few as 4 hours on the lightest day and as many as 9 on the busiest.
x~=26+6=6 With 8 values, the median is the average of the 4th and 5th values, which are both 6.
Lower half: 4,5,5,6 The lower half consists of the 4 smallest values.
Q1=25+5=5 The first quartile is the average of the 2nd and 3rd values of the lower half (5 and 5).
Upper half: 6,7,8,9 The upper half consists of the 4 largest values.
Q3=27+8=7.5 The third quartile is the average of the 2nd and 3rd values of the upper half (7 and 8).
Answer: {4,5,6,7.5,9}
The five-number summary shows that the crew typically works between 5 and 7.5 hours (the middle 50%), with a median of 6 hours. The range from 4 to 9 hours suggests variable workload across the week.