Problem 1 — t-Interval Construction (Variants A–E)
Each variant follows the same four-step workflow: compute df → look up
- Variant A (sleep duration,
hrs, , , 95%): , . , → 95% CI: hrs. - Variant B (plant growth,
cm, , , 90%): , . , → 90% CI: cm. - Variant C (blood glucose,
mg/dL, , , 99%): , . , → 99% CI: mg/dL. - Variant D (reaction time,
ms, , , 95%): , . , → 95% CI: ms. - Variant E (protein content,
g, , , 90%): , . , → 90% CI: g.
Common error — df = n: using
Problem 2 — When to Use t vs. z (Variants A–E)
Decision rule: if
- Variant A (nutritionist, n = 20,
unknown): Use t ( unknown, n < 30). “We are 95% confident the true mean sodium content lies between [L] and [U] mg” — describing the procedure’s reliability, not the probability is in this interval. - Variant B (factory QC,
g known, n = 15): Use z — known, so use (95%), not a t-value. - Variant C (researcher, n = 45,
unknown): Use z (or t — both acceptable). With the CLT justifies z, but t with df = 44 is equally valid; z is most commonly reported. - Variant D (pharmacist, n = 8,
unknown, population normal): Use t — small n, unknown; the normality assumption makes the t-interval valid even at n = 8. - Variant E (historian, n = 12,
unknown): Use t (df = 11). “If we repeated this sampling procedure, about 90% of the resulting intervals would capture the true mean — this one may or may not.”
Problem 3 — z vs. t Width Comparison
Data:
- z-based (incorrect):
→ . - t-based (correct):
, , → .
(a) The t-interval is wider (6.180 vs. 5.684). (b) Because
Problem 4 — Generated Problems
Solutions are embedded in the generator output. The steps are always:
- Compute
. - Use the
provided (from the T_CRIT table for that df and confidence level). - Compute
, then . - State the interval
.