GP1 — Constructing a Confidence Interval (Variants A–E)
Each variant follows the same four-step workflow: check conditions → identify z* → compute SE and E → build interval.
Variant A (coffee shop, σ = 1.6, n = 64, x̄ = 7.8, 95% CI):
- \(\text{SE} = 1.6/\sqrt{64} = 0.20, \quad E = 1.96 \times 0.20 = 0.392\)
- 95% CI: \(7.8 \pm 0.392 = (7.408, 8.192)\)
Variant B (exam scores, σ = 12, n = 36, x̄ = 74, 99% CI):
- \(\text{SE} = 12/\sqrt{36} = 2, \quad E = 2.576 \times 2 = 5.152\)
- 99% CI: \(74 \pm 5.152 = (68.848, 79.152)\)
Variant C (delivery times, σ = 8.4, n = 49, x̄ = 31.6, 90% CI):
- \(\text{SE} = 8.4/\sqrt{49} = 1.2, \quad E = 1.645 \times 1.2 = 1.974\)
- 90% CI: \(31.6 \pm 1.974 = (29.626, 33.574)\) minutes.
Variant D (heart rate, σ = 10, n = 100, x̄ = 68, 95% CI):
- \(\text{SE} = 10/\sqrt{100} = 1, \quad E = 1.96 \times 1 = 1.96\)
- 95% CI: \(68 \pm 1.96 = (66.04, 69.96)\) bpm.
Variant E (battery life, σ = 25, n = 81, x̄ = 312, 99% CI):
- \(\text{SE} = 25/\sqrt{81} = 25/9 \approx 2.778, \quad E = 2.576 \times 2.778 \approx 7.157\)
- 99% CI: \(312 \pm 7.157 = (304.843, 319.157)\) hours.
Critical value reference: 90% → z* = 1.645; 95% → z* = 1.96; 99% → z* = 2.576. The single most common error is mixing up which z* corresponds to which level. Remember: higher confidence requires a larger z*, producing a wider interval.
GP2 — Correct Interpretation (Variants A–E)
All five variants test the same core idea: confidence intervals describe a property of the procedure, not a probability statement about the fixed parameter \(\mu\).
Variant A (step count CI: (8,240, 9,760)): Correct statement — "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 (μ is fixed), or claiming 95% of individuals fall in the range.
Variant B (exam score CI: (71.3, 76.7)): The phrase "90% sure" is problematic because it implies μ has a 90% chance of being inside. The frequentist correct 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. Individual wait times have much higher variability; most customers fall outside this range in either direction.
Variant D (temperature CI: (36.1, 36.9)): Correct statement — "If we used this same sampling procedure repeatedly, about 99% of the resulting confidence intervals would contain the true mean." The other options mistakenly assign probability to the fixed μ.
Variant E (probability is 0 or 1): True. After the interval is computed, μ is either inside it (probability 1) or not (probability 0). The 95% refers to the long-run frequency of the procedure before any specific interval is computed.
GP3 — Required Sample Size (Generated Problems)
The formula is \(n = \lceil (z^* \sigma / E)^2 \rceil\). Always round up. The three critical values are z* = 1.645 (90%), 1.96 (95%), 2.576 (99%). Plug in σ and E for the specific generated problem, compute the ratio, square it, and take the ceiling.
Example walk-through (σ = 12, E = 2, 95% confidence):
- \(n = \lceil (1.96 \times 12 / 2)^2 \rceil = \lceil (11.76)^2 \rceil = \lceil 138.3 \rceil = 139\).
GP4 — Width and Confidence Level Trade-Off
SE = 9.1/√45 ≈ 1.357.
(a)
- 90\%: E = 1.645 × 1.357 ≈ 2.232. CI: (50.168, 54.632).
- 99\%: E = 2.576 × 1.357 ≈ 3.496. CI: (48.904, 55.896).
(b) Width of 90% CI: \(2 \times 2.232 = 4.464\). Width of 99% CI: \(2 \times 3.496 = 6.992\). The 99% CI is approximately 2.53 units wider — about 57% wider for a 9-percentage-point increase in confidence.
(c) "More confidence is always better" ignores the cost in precision. A very wide 99% CI may be so uninformative as to be practically useless. The right confidence level depends on what decision will be made from the interval and how costly a wrong decision is. In exploratory work, 90% may be fine; in safety-critical applications, 99% (or even higher) may be warranted.