Problem 1 — Computing the Range (Ecologist Bird Species)
Dataset: 12, 8, 15, 10, 9, 14, 7, 11 (8 wetland sites).
(a) Find the minimum: Scan all values — the smallest is 7. min = 7 species.
(b) Compute the range: max = 15 (the largest value), min = 7.
(c) With a 9th site (37 species), new range: The new maximum is 37; the minimum remains 7 (no new low value).
Why this matters: Before the 9th site, a range of 8 reasonably described the spread (all values between 7 and 15). After site 9, the range of 30 is misleading — 8 of 9 sites are still tightly clustered between 7 and 15. This is exactly why we need resistant measures like the IQR.
Problem 2 — Sample Variance and Standard Deviation (All 5 Variants)
Every variant follows the same procedure:
Variant 0 — Tomato Plant Fruit Counts (n = 5)
Data: 8, 12, 9, 11, 10.
Step 1 — Mean:
Step 2 — Deviation table:
| 8 | −2 | 4 |
| 12 | +2 | 4 |
| 9 | −1 | 1 |
| 11 | +1 | 1 |
| 10 | 0 | 0 |
Check: deviations sum to
Step 3 — Sum of squared deviations:
Step 4 — Sample variance:
Step 5 — Sample standard deviation:
Interpretation: The typical plant’s fruit count deviates from the mean of 10 by about 1.58 fruits.
Variant 1 — Runner Sprint Times (n = 6)
Data: 12.1, 11.8, 12.5, 12.0, 11.6, 12.4 (seconds).
Step 1 — Mean:
Step 2 — Deviation table:
| 12.1 | +0.0333 | 0.0011 |
| 11.8 | −0.2667 | 0.0711 |
| 12.5 | +0.4333 | 0.1878 |
| 12.0 | −0.0667 | 0.0044 |
| 11.6 | −0.4667 | 0.2178 |
| 12.4 | +0.3333 | 0.1111 |
Step 3 — Sum of squared deviations:
Step 4 — Sample variance:
Step 5 — Sample standard deviation:
Interpretation: The typical time deviates from the mean of 12.07 s by about 0.34 s — a small SD relative to the mean indicates a tightly clustered field.
Variant 2 — Cafe Daily Pastry Sales (n = 7)
Data: 24, 30, 22, 28, 26, 20, 25.
Step 1 — Mean:
Step 2 — Deviation table:
| 24 | −1 | 1 |
| 30 | +5 | 25 |
| 22 | −3 | 9 |
| 28 | +3 | 9 |
| 26 | +1 | 1 |
| 20 | −5 | 25 |
| 25 | 0 | 0 |
Check:
Step 3 — Sum of squared deviations:
Step 4 — Sample variance:
Step 5 — Sample standard deviation:
Interpretation: Daily sales typically deviate from the mean of 25 by about 3.4 pastries — moderately variable.
Variant 3 — Container Liquid Volumes (n = 8)
Data: 250, 248, 253, 251, 249, 252, 247, 250 (mL).
Step 1 — Mean:
Step 2 — Deviation table:
| 250 | 0 | 0 |
| 248 | −2 | 4 |
| 253 | +3 | 9 |
| 251 | +1 | 1 |
| 249 | −1 | 1 |
| 252 | +2 | 4 |
| 247 | −3 | 9 |
| 250 | 0 | 0 |
Step 3 — Sum of squared deviations:
Step 4 — Sample variance:
Step 5 — Sample standard deviation:
Interpretation: The filling process is very consistent — the typical container deviates from 250 mL by only 2.0 mL (under 1% relative variation).
Variant 4 — Package Weights (n = 4)
Data: 3.2, 3.8, 3.5, 3.1 (kg).
Step 1 — Mean:
Step 2 — Deviation table:
| 3.2 | −0.2 | 0.04 |
| 3.8 | +0.4 | 0.16 |
| 3.5 | +0.1 | 0.01 |
| 3.1 | −0.3 | 0.09 |
Step 3 — Sum of squared deviations:
Step 4 — Sample variance:
Step 5 — Sample standard deviation:
Interpretation: Packages typically deviate from the mean of 3.4 kg by about 0.32 kg. With n = 4, Bessel’s correction matters: dividing by n = 4 would give
Common mistakes in variance / SD computation:
- Forgetting to square deviations: summing raw deviations gives 0 every time. Square first, then sum, then divide.
- Dividing by n instead of n−1: the single most frequent error. For sample data the denominator is always n−1.
- Reporting
as : variance and SD are different quantities. . A variance of 2.5 means . - Using n−1 for the mean: Bessel’s correction applies only to the variance denominator. The mean always divides by n:
.
Problem 3 — Five-Number Summary, IQR, and Outlier Detection (All 5 Variants)
Variant 0 — Statistics Quiz Scores (n = 10)
Sorted: 8, 9, 11, 12, 13, 14, 15, 16, 17, 18 (n = 10, even).
- Q2 (median): positions 5 and 6 →
. - Lower half (positions 1–5): 8, 9, 11, 12, 13.
(odd). Q1 = 11 (position 3). - Upper half (positions 6–10): 14, 15, 16, 17, 18.
(odd). Q3 = 16 (position 3).
Five-number summary: min = 8, Q1 = 11, Q2 = 13.5, Q3 = 16, max = 18. IQR = 16 − 11 = 5. Fences: Lower = 11 − 1.5 × 5 = 3.5; Upper = 16 + 1.5 × 5 = 23.5. All values in [3.5, 23.5]. No outliers.
Variant 1 — Delivery Truck Distances (n = 7)
Sorted: 38, 45, 49, 61, 67, 72, 83 (n = 7, odd).
- Q2: position 4 → 61.
- Lower half: 38, 45, 49 → Q1 = 45. Upper half: 67, 72, 83 → Q3 = 72.
Five-number summary: min = 38, Q1 = 45, Q2 = 61, Q3 = 72, max = 83. IQR = 27 km. Fences: Lower = 45 − 1.5 × 27 = 4.5; Upper = 72 + 1.5 × 27 = 112.5. All values in [4.5, 112.5]. No outliers.
Variant 2 — Pharmacy Prescription Counts (n = 7)
Sorted: 88, 98, 115, 142, 160, 175, 205 (n = 7, odd).
- Q2: position 4 → 142.
- Lower half: 88, 98, 115 → Q1 = 98. Upper half: 160, 175, 205 → Q3 = 175.
Five-number summary: min = 88, Q1 = 98, Q2 = 142, Q3 = 175, max = 205. IQR = 77. Fences: Lower = 98 − 1.5 × 77 = −17.5; Upper = 175 + 1.5 × 77 = 290.5. The negative lower fence just means no value can be flagged low (expected for count data). All values in [−17.5, 290.5]. No outliers.
Variant 3 — Car Battery Lifetimes (n = 8)
Sorted: 24, 30, 36, 38, 42, 48, 54, 60 (n = 8, even).
- Q2: positions 4 and 5 →
. - Lower half (positions 1–4): 24, 30, 36, 38.
. Q1 = . - Upper half (positions 5–8): 42, 48, 54, 60.
. Q3 = .
Five-number summary: min = 24, Q1 = 33, Q2 = 40, Q3 = 51, max = 60. IQR = 18 months. Fences: Lower = 33 − 1.5 × 18 = 6; Upper = 51 + 1.5 × 18 = 78. All values in [6, 78]. No outliers.
Variant 4 — Apartment Rents (n = 11)
Sorted: 800, 850, 900, 950, 1000, 1050, 1100, 1150, 1250, 1300, 2000 (n = 11, odd).
- Q2: position 6 → 1050.
- Lower half (below Q2): 800, 850, 900, 950, 1000.
. Q1 = 900. - Upper half (above Q2): 1100, 1150, 1250, 1300, 2000.
. Q3 = 1250.
Five-number summary: min = 800, Q1 = 900, Q2 = 1050, Q3 = 1250, max = 2000. IQR = 350. Fences: Lower = 900 − 1.5 × 350 = 375; Upper = 1250 + 1.5 × 350 = 1775. Outlier check: 800 > 375 → no low outlier; 2000 > 1775 → 2000 is a potential outlier. All other values (850–1300) are well within the fences. The $2000 apartment should be investigated — luxury unit, data-entry error, or legitimate high-end rental? Do not auto-delete; flag for investigation.