Problem 1 — Constructing a Confidence Interval (Variants A–E)
Each variant follows the same four-step workflow: check conditions → identify
- Variant A (coffee shop,
, n = 64, , 95% CI): , → 95% CI: . - Variant B (exam scores,
, n = 36, , 99% CI): , → 99% CI: . - Variant C (delivery times,
, n = 49, , 90% CI): , → 90% CI: minutes. - Variant D (heart rate,
, n = 100, , 95% CI): , → 95% CI: bpm. - Variant E (battery life,
, n = 81, , 99% CI): , → 99% CI: hours.
Critical value reference: 90% →
Problem 2 — Correct Interpretation (Variants A–E)
All five variants test the same idea: a confidence interval describes a property of the procedure, not a probability statement about the fixed parameter
- Variant A (step count CI (8,240, 9,760)): Correct — “we used a procedure that captures the true mean in about 95% of all samples drawn this way.” Wrong — assigning 95% probability to
‘s location (it’s fixed) or claiming 95% of individuals fall in the range. - Variant B (exam CI (71.3, 76.7)): “90% sure” implies
has a 90% chance of being inside. Correct frequentist phrasing: “90% of intervals from this procedure capture .” - Variant C (wait time CI (14.2, 17.8)): False — the CI is about the mean, not individual customers, whose wait times vary far more widely.
- Variant D (temperature CI (36.1, 36.9)): Correct — “if we repeated this sampling procedure, about 99% of the resulting intervals would contain the true mean.” The others wrongly assign probability to a fixed
. - Variant E (probability is 0 or 1): True. Once the interval is computed,
is either inside (probability 1) or not (probability 0). The 95% is the long-run frequency of the procedure, before any specific interval is computed.
Problem 3 — Required Sample Size (Generated Problems)
The formula is
Example (
Problem 4 — Width and Confidence-Level Trade-Off
(a) 90%:
(b) Width of 90% CI:
(c) “More confidence is always better” ignores the cost in precision. A very wide 99% CI may be too uninformative to be useful. The right level depends on the decision being made and how costly a wrong call is — 90% may suit exploratory work; 99% (or higher) suits safety-critical applications.