In Lesson 26 you ran inference on a single mean: one sample, one x̄, one μ. But just like with proportions, the questions that matter most are comparisons. Does the new fertilizer grow taller plants than the old one? Is reaction time faster with a focus app than without? Do morning commutes take longer than evening ones?
Here's the twist that makes means trickier than proportions, and it's the heart of this whole lesson. There are two completely different ways two groups of numbers can show up:
These two situations need two different procedures. Run the wrong one and your standard error, your degrees of freedom, and your p-value are all wrong — and the AP exam tests this exact decision constantly. By the end of this lesson, spotting "independent vs. paired" should be automatic.
Everything in this lesson branches at one decision:
Are the two sets of numbers independent (two separate groups), or paired (each value in one group is naturally tied to a specific value in the other)?
2-SampTInt / 2-SampTTest), with parameter μ₁ − μ₂.d for each pair, then run a one-sample t procedure (TInterval / T-Test) on those differences, with parameter μ_d.Get the fork right and the rest is mechanical. Get it wrong and everything downstream collapses. We'll build both roads fully.
The parameter and statistic. Two populations, each with its own true mean: μ₁ and μ₂. From each we draw an independent sample and compute x̄₁ and x̄₂. Our estimate of the difference μ₁ − μ₂ is simply x̄₁ − x̄₂.
The standard error. Because the two samples are independent, their variances add:
SE = sqrt( s₁²/n₁ + s₂²/n₂ )
Notice we use each group's own s and n. AP Statistics uses the unpooled two-sample t — we do NOT combine the two s values into one pooled estimate. (Pooling assumes the two populations have equal variances, an assumption AP doesn't make. If your calculator asks "Pooled: Yes/No," always choose No.)
Degrees of freedom. The unpooled two-sample t doesn't follow a clean t-distribution, so technology uses the Welch–Satterthwaite approximation — usually a messy decimal. On the AP exam you may either (1) report the calculator's df (preferred, more accurate), or (2) use the conservative df = min(n₁−1, n₂−1) if you're working by hand. The conservative df gives a slightly wider interval / slightly larger p-value, so it's a safe fallback. In worked answers we'll show the calculator df.
The confidence interval:
(x̄₁ − x̄₂) ± t*·sqrt( s₁²/n₁ + s₂²/n₂ )
The test statistic (the null says μ₁ − μ₂ = 0, so the hypothesized difference drops out of the numerator):
t = (x̄₁ − x̄₂) / sqrt( s₁²/n₁ + s₂²/n₂ )
Conditions — check for BOTH groups:
n ≥ 30), OR a graph of the sample data shows no strong skew/outliers. Check this separately for each group.Scenario. A school pilots a new teaching method. A random sample of 22 students taught with the new method scores a mean of 84.6 (s = 7.2) on the final; an independent random sample of 24 students taught the traditional way scores a mean of 79.8 (s = 8.1). Do these data give convincing evidence at
α = 0.05that the new method produces a higher mean score? (Sample dotplots show roughly symmetric data with no outliers.)
P — Parameter. Let μ₁ = true mean final score for students taught with the new method, and μ₂ = true mean score for the traditional method. We test:
H₀: μ₁ = μ₂ (equivalently μ₁ − μ₂ = 0)Hₐ: μ₁ > μ₂A — Assumptions/Conditions.
N — Name the procedure. A two-sample t-test for μ₁ − μ₂ (unpooled), 2-SampTTest.
I — Test.
x̄₁ − x̄₂ = 84.6 − 79.8 = 4.8
SE = sqrt( 7.2²/22 + 8.1²/24 )
= sqrt( 51.84/22 + 65.61/24 )
= sqrt( 2.35636 + 2.73375 )
= sqrt( 5.09011 )
= 2.25613
t = 4.8 / 2.25613 = 2.128
df (technology, Welch) = 43.96
one-sided p-value = P(t > 2.128 | df = 43.96) = 0.0195
TI-84: STAT → TESTS → 2-SampTTest
Input: x̄1=84.6, Sx1=7.2, n1=22, x̄2=79.8, Sx2=8.1, n2=24
μ1 > μ2, Pooled: No
Output: t = 2.1275, p = 0.0195, df = 43.964
(Conservative-df check: with df = min(21, 23) = 21, p ≈ 0.0226 — still < 0.05, same decision.)
C — Conclusion in context. Since the p-value 0.0195 < α = 0.05, we reject H₀. We have convincing evidence that the new teaching method produces a higher mean final score than the traditional method.
When the data are paired, the two columns are NOT independent — each value in column 1 is tied to a specific value in column 2 (same subject, or matched partners). Treating them as two independent groups throws away the pairing and inflates the standard error. Instead:
Step 1 — Collapse each pair to a single difference d = (value 1) − (value 2). You now have one list of differences.
Step 2 — Run a ONE-sample t procedure on the differences. The parameter is μ_d, the true mean difference. Everything from Lesson 26 applies — it's a one-sample problem now.
d̄ ± t·(s_d / sqrt(n)) with df = n − 1 (n = number of pairs*).H₀: μ_d = 0: t = d̄ / (s_d / sqrt(n)), df = n − 1.Conditions (one-sample, on the differences):
n ≥ 30 pairs, OR a graph of the differences shows no strong skew/outliers. (Check the differences, not the two original columns.)Scenario. A researcher tests whether a focus app lowers reaction time. The same 12 subjects each complete a reaction-time task without the app and with the app (order randomized). Reaction times (ms):
| Subject | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | 412 | 389 | 455 | 401 | 378 | 433 | 420 | 395 | 448 | 410 | 386 | 425 |
| With | 398 | 392 | 440 | 386 | 375 | 419 | 408 | 389 | 431 | 402 | 384 | 409 |
| d = w/o − with | 14 | −3 | 15 | 15 | 3 | 14 | 12 | 6 | 17 | 8 | 2 | 16 |
Do the data give convincing evidence at
α = 0.05that the app lowers mean reaction time? (A positivedmeans the app reduced the time.)
P — Parameter. Let μ_d = the true mean difference (without − with) in reaction time. We test:
H₀: μ_d = 0Hₐ: μ_d > 0 (without is higher → the app lowered the time)A — Assumptions/Conditions.
N — Name the procedure. A matched-pairs t-test, i.e., a one-sample t-test on the differences (T-Test on the list d).
I — Test.
The 12 differences: 14, −3, 15, 15, 3, 14, 12, 6, 17, 8, 2, 16
d̄ = 119/12 = 9.9167
s_d = 6.5569 (sample SD of the differences)
n = 12 → df = 11
SE = s_d / sqrt(n) = 6.5569 / sqrt(12) = 6.5569 / 3.4641 = 1.89280
t = d̄ / SE = 9.9167 / 1.89280 = 5.239
one-sided p-value = P(t > 5.239 | df = 11) ≈ 0.00014
TI-84: enter the 12 differences in L3 (or compute L1 − L2 → L3)
STAT → TESTS → T-Test
Input: Data, List: L3, μ0 = 0, μ > μ0
Output: t = 5.2391, p = 1.4×10⁻⁴, d̄ = 9.9167, Sx = 6.5569, n = 12
C — Conclusion in context. Since the p-value ≈ 0.0001 < α = 0.05, we reject H₀. We have convincing evidence that the focus app lowers the mean reaction time. (We could also report a 95% CI for μ_d: 9.9167 ± 2.201(1.89280) = (5.75, 14.08) ms — the whole interval is positive, agreeing with the test.)
Ask: "Is each number in one group naturally tied to one specific number in the other group?"
| If… | then it's… | use… | parameter |
|---|---|---|---|
| Two separate groups of subjects (different people/things in each) | Independent |
2-SampTTest/2-SampTIntonx̄₁, x̄₂|μ₁ − μ₂|| The same subjects measured twice (before/after, two conditions) | Paired | one-sample t on the differences |
μ_d|| Subjects matched into pairs (twins, split plots, left/right) | Paired | one-sample t on the differences |
μ_d|Tells for paired data: same subjects measured before and after; "each person did both"; natural pairs (twins, two halves of one field, two eyes); the two columns must have equal sample sizes and rows that line up one-to-one.
Tells for independent data: two different random samples; two treatment groups from random assignment; the two sample sizes can differ (
n₁ ≠ n₂); there's no way to match a specific subject in group 1 to a specific subject in group 2.
If n₁ ≠ n₂, it cannot be paired (you can't pair up unequal lists). But equal sample sizes do not automatically mean paired — you still need a real one-to-one tie between the rows.
Problem. Two brands of rechargeable battery are tested. A random sample of 15 Brand-A batteries lasts a mean of 8.4 hours (s = 1.2); an independent random sample of 18 Brand-B batteries lasts a mean of 7.1 hours (s = 1.5). Build a 95% confidence interval for μ_A − μ_B. (Both samples look roughly symmetric.)
Strategy. Two separate groups → independent two-sample t interval, unpooled SE.
Solution.
x̄_A − x̄_B = 8.4 − 7.1 = 1.3
SE = sqrt( 1.2²/15 + 1.5²/18 ) = sqrt( 0.096 + 0.125 ) = sqrt(0.221) = 0.47011
df (technology) = 30.96 → t* = 2.0396
95% CI = 1.3 ± 2.0396(0.47011) = 1.3 ± 0.959 = (0.341, 2.259)
TI-84: 2-SampTInt → x̄1=8.4, Sx1=1.2, n1=15, x̄2=7.1, Sx2=1.5, n2=18, C=.95, Pooled:No
Output: (0.3412, 2.2588), df = 30.963
(Conservative df = min(14,17) = 14, t = 2.145 → CI (0.292, 2.308), slightly wider.)*
Interpretation. We are 95% confident the true difference in mean battery life (A − B) is between 0.34 and 2.26 hours. Because the interval is entirely above 0, we have convincing evidence Brand A lasts longer on average.
Problem. A commuter compares two routes. A random sample of 30 trips on Route A averages 24.5 min (s = 4.2); an independent sample of 28 trips on Route B averages 27.1 min (s = 5.0). Is there convincing evidence at α = 0.05 that Route A is faster on average?
Strategy. Two independent samples → 2-SampTTest, Hₐ: μ_A < μ_B.
Solution.
P: H₀: μ_A = μ_B Hₐ: μ_A < μ_B
A: random trips; routes independent; both n large (≥30 and ≈28) ✓
N: two-sample t-test (unpooled)
I: SE = sqrt(4.2²/30 + 5.0²/28) = sqrt(0.588 + 0.89286) = sqrt(1.48086) = 1.21690
t = (24.5 − 27.1)/1.21690 = −2.6/1.21690 = −2.137
df (tech) = 52.91 → one-sided p = P(t < −2.137) = 0.0186
TI-84: 2-SampTTest → ... μ1 < μ2, Pooled:No → t = −2.1366, p = 0.0186, df = 52.908
Conclusion. Since p = 0.0186 < 0.05, reject H₀. There is convincing evidence Route A has a lower mean travel time than Route B.
Problem. Eight patients have their systolic blood pressure measured before and after taking a new drug. Build a 95% CI for the mean reduction (μ_d, before − after).
| Patient | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
|---|---|---|---|---|---|---|---|---|
| Before | 145 | 152 | 138 | 160 | 149 | 155 | 142 | 158 |
| After | 138 | 149 | 135 | 151 | 144 | 150 | 140 | 149 |
| d = b − a | 7 | 3 | 3 | 9 | 5 | 5 | 2 | 9 |
Strategy. Same patients measured twice → paired. Run a one-sample t interval on the 8 differences.
Solution.
d: 7, 3, 3, 9, 5, 5, 2, 9
d̄ = 43/8 = 5.375 s_d = 2.7223 n = 8 → df = 7
SE = 2.7223/sqrt(8) = 2.7223/2.8284 = 0.96247
t* (df=7, 95%) = 2.3646
95% CI = 5.375 ± 2.3646(0.96247) = 5.375 ± 2.276 = (3.099, 7.651)
TI-84: put the 8 differences in L1 → TInterval → Data, L1, C=.95
Output: (3.0991, 7.6509), d̄ = 5.375, Sx = 2.7223, n = 8
Interpretation. We are 95% confident the true mean reduction in systolic BP (before − after) is between 3.10 and 7.65 points. The interval is entirely above 0, so the drug is associated with a genuine mean decrease.
Problem. For each scenario, state whether to use an independent two-sample t or a matched-pairs t.
(i) A trainer records the 40-yard dash time of 15 athletes, has them do a 6-week program, then records each athlete's time again.
(ii) Researchers randomly assign 50 volunteers — 25 to a low-carb diet, 25 to a low-fat diet — and compare mean weight loss.
(iii) To compare two tire brands, each of 20 cars gets Brand A on the left side and Brand B on the right side; tread wear is measured on each tire.
(iv) Two independent random samples — 40 men and 35 women — report mean weekly screen time.
Solution.
μ_lowcarb − μ_lowfat.Key tell: if the two lists must line up one-to-one (same subject or matched partner), it's paired; if they're two separate groups (and especially if n₁ ≠ n₂), it's independent.
1. Running a two-sample test on paired data (or vice versa). The #1 trap. If the same subjects are measured twice, you must collapse to differences and run a one-sample procedure on μ_d. Treating paired data as two independent groups uses the wrong (too large) standard error and the wrong df, usually killing a real effect. Conversely, you can't "pair up" two genuinely separate groups — there's nothing to subtract row-by-row.
2. Using the wrong standard error. For independent groups the SE is sqrt(s₁²/n₁ + s₂²/n₂) — variances add under the radical. Don't write sqrt(s₁²/n₁) + sqrt(s₂²/n₂) (adding SDs), and don't pool the variances — AP uses the unpooled t (Pooled: No).
3. Forgetting to actually analyze the differences for paired data. Some students recognize the pairing, then still plug x̄₁, x̄₂, s₁, s₂ into a two-sample routine. You must compute the list d, then use d̄ and s_d. The parameter is μ_d, and df = (number of pairs) − 1.
4. Mis-stating the conditions. For paired data, the Normal/Large-Sample condition is about the differences, not the two original columns. For independent data, you must check Normal/Large Sample separately for both groups, and the two groups must be independent of each other (not paired).
5. Reporting the wrong df or hypotheses. For matched pairs, df = n − 1 (one-sample), not some two-sample formula. State H₀: μ_d = 0 for pairs (not μ₁ = μ₂). For independent groups, use the calculator's Welch df or the conservative min(n₁−1, n₂−1) — never n₁ + n₂ − 2 (that's the pooled df AP doesn't use).
1 (MC). Which standard error is correct for an independent two-sample t for μ₁ − μ₂?
sqrt(s₁²/n₁) + sqrt(s₂²/n₂)sqrt( s₁²/n₁ + s₂²/n₂ )sqrt( s_p²(1/n₁ + 1/n₂) ) with a pooled s_ps_d / sqrt(n)2 (MC). For independent samples with s₁ = 12, n₁ = 20, s₂ = 15, n₂ = 25, the standard error of x̄₁ − x̄₂ is closest to:
3 (MC). A study measures the same 18 runners' heart rates before and after a race. The correct procedure is:
μ₁ − μ₂.μ_d).4 (MC). When AP students compute an independent two-sample t by hand, the safe conservative degrees of freedom is:
n₁ + n₂ − 2n₁ + n₂ − 1min(n₁ − 1, n₂ − 1)max(n₁ − 1, n₂ − 1)5 (MC). Independent samples: x̄₁ = 50, s₁ = 8, n₁ = 16 and x̄₂ = 46, s₂ = 10, n₂ = 20. The test statistic t for H₀: μ₁ = μ₂ is closest to:
6 (MC). For a matched-pairs t-test with 25 pairs and d̄ = 3.2, s_d = 4.0, the test statistic and df are:
t = 4.0, df = 24t = 4.0, df = 25t = 0.8, df = 24t = 4.0, df = 497 (MC). Two studies compare the same two diets. Study X uses two separate groups of 30 people each; Study Y measures the same 30 people on both diets (with a washout period). Which is true?
8 (MC). A two-sample t-test on a TI-84 asks "Pooled: Yes or No." For AP Statistics you should choose:
n₁ = n₂.9 (Short answer, classify). For each, state independent or paired and name the procedure: (i) 12 married couples each report hours of sleep — compare husbands vs. wives; (ii) 60 plots of land — 30 randomly get fertilizer A, 30 get fertilizer B — compare mean yield.
10 (Short answer, in context). Two coffee shops' wait times: Shop A (random sample of 12) has x̄ = 4.2 min, s = 1.1; Shop B (independent random sample of 14) has x̄ = 5.0 min, s = 1.4. Construct a 90% CI for μ_A − μ_B (calculator df = 23.85) and state whether there's convincing evidence of a difference.
11 (Short answer, in context). Seven students take a practice essay, get feedback, and rewrite it; the score change (rewrite − original) for each is: 2.1, −0.4, 1.8, 0.9, 1.2, 2.5, 0.6. Test at α = 0.05 whether the feedback changes mean scores (Hₐ: μ_d ≠ 0).
12 (Short answer). A student has data on the same 20 subjects' cholesterol before and after a diet, but runs a 2-SampTTest using the before-mean and after-mean as two groups. Explain what's wrong and what they should have done.
13 (MC). A 95% CI for μ₁ − μ₂ (independent) comes out to (−1.2, 3.6). The correct conclusion is:
μ₁ is convincingly larger than μ₂.μ₂ is convincingly larger than μ₁.14 (Short answer). Explain why the matched-pairs design (same subjects twice) often detects a real effect that a two-sample design with the same data would miss.
A psychology researcher believes that studying in silence improves recall compared with studying with background music. She recruits 10 students. Each student studies one word list in silence and a comparable word list with music playing (which list goes with which condition, and the order, are randomized for each student). The number of words recalled is recorded for each student under each condition.
| Student | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|---|
| Silence | 18 | 22 | 15 | 20 | 24 | 17 | 19 | 21 | 16 | 23 |
| Music | 15 | 20 | 16 | 17 | 21 | 14 | 18 | 17 | 15 | 19 |
(a) Carry out an appropriate significance test at
α = 0.05to determine whether there is convincing evidence that students recall more words, on average, in silence than with music. (8 points)(b) Based on your conclusion in part (a), which type of error — Type I or Type II — could the researcher have made, and what would it mean in context? (2 points)
Part (a).
First, compute the difference d = silence − music for each student:
| Student | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|---|
| d | 3 | 2 | −1 | 3 | 3 | 3 | 1 | 4 | 1 | 4 |
P — Parameter. Let μ_d = the true mean difference in words recalled (silence − music) for students like these. We test:
H₀: μ_d = 0Hₐ: μ_d > 0 (more recalled in silence)A — Assumptions/Conditions.
N — Name. A matched-pairs t-test (one-sample t-test on the differences d).
I — Test.
d: 3, 2, −1, 3, 3, 3, 1, 4, 1, 4
d̄ = 23/10 = 2.30 s_d = 1.5670 n = 10 → df = 9
SE = s_d/sqrt(n) = 1.5670/sqrt(10) = 1.5670/3.16228 = 0.49554
t = d̄/SE = 2.30/0.49554 = 4.641
one-sided p-value = P(t > 4.641 | df = 9) ≈ 0.00061
TI-84: differences in L1 → T-Test → Data, L1, μ0=0, μ > μ0
Output: t = 4.6414, p = 6.1×10⁻⁴, d̄ = 2.3, Sx = 1.5670, n = 10
C — Conclusion. Since the p-value ≈ 0.0006 < α = 0.05, we reject H₀. We have convincing evidence that students recall more words, on average, when studying in silence than with music.
Part (b). Because we rejected H₀, the only possible error is a Type I error — rejecting a true null. In context: concluding that silence improves mean recall when in reality there is no difference in mean recall between studying in silence and with music.
Part (a) — 8 points:
| Component | Points | Requirement |
|---|---|---|
| Identify paired design + compute differences | 1 | Recognizes matched pairs (same students twice) AND shows the differences d |
| Hypotheses | 1 | Correct H₀: μ_d = 0, Hₐ: μ_d > 0, with μ_d defined in context |
| Conditions | 2 | Random/independent stated (1) AND Normal/Large-Sample checked on the differences (1) |
| Name + SE | 1 | Names matched-pairs (one-sample) t AND computes SE = s_d/√n ≈ 0.4955 |
| Test statistic + df | 2 | Correct t ≈ 4.64 (1) AND correct df = 9 (1) |
| p-value + conclusion | 1 | Correct one-sided p ≈ 0.0006 AND reject H₀ with context & direction |
Part (b) — 2 points:
| Component | Points | Requirement |
|---|---|---|
| Identify error type | 1 | States Type I error (consistent with rejecting H₀) |
| Interpret in context | 1 | Explains: concluding silence improves recall when really there's no difference |
Where students lose points:
2-SampTTest) on the silence and music columns — this is the biggest error. It's paired data; you must use the differences. Loses the design point, the SE point, and usually the test-statistic/df points (the wrong SE and df result).μ₁ = μ₂ instead of μ_d = 0, or ≠ / < instead of > for the alternative.n − 1 = 9.H₀") with no context or direction — loses the conclusion point.1. (B). Independent two-sample SE adds the variances under one radical: sqrt(s₁²/n₁ + s₂²/n₂). (A) wrongly adds the two SDs. (C) is the pooled SE — AP doesn't pool. (D) is the paired (one-sample) SE.
2. (B) 4.02. SE = sqrt(12²/20 + 15²/25) = sqrt(7.2 + 9.0) = sqrt(16.2) = 4.025. (A) comes from sqrt(16.2/2); (C) is just s₂; (D) is the variance, not the SE.
3. (B). Same 18 subjects measured twice → paired → one-sample t on the differences (μ_d). (A) ignores the pairing. (C)/(D) are categorical procedures — these are quantitative (heart rate).
4. (C). The conservative df is min(n₁ − 1, n₂ − 1), which gives a slightly wider interval / larger p-value — a safe by-hand fallback. (A) n₁+n₂−2 is the pooled df AP doesn't use; (B)/(D) are not valid choices.
5. (B) 1.33. SE = sqrt(8²/16 + 10²/20) = sqrt(4 + 5) = sqrt(9) = 3. t = (50 − 46)/3 = 4/3 = 1.333. (A) halves it; (C)/(D) use a wrong SE.
6. (A) t = 4.0, df = 24. Paired: SE = s_d/√n = 4.0/√25 = 0.8; t = d̄/SE = 3.2/0.8 = 4.0; df = n − 1 = 24. (C) reports the SE as t; (B)/(D) use wrong df.
7. (C). Study X has two separate groups → independent two-sample t. Study Y measures the same people twice → matched-pairs t. (A)/(B) ignore the design difference; (D) reverses them.
8. (B) No, always. AP Statistics uses the unpooled two-sample t, so choose Pooled: No. Pooling assumes equal population variances, an assumption AP doesn't make.
9. (i) Paired — each couple is a natural pair (husband tied to his own wife); analyze the 12 differences with a one-sample (matched-pairs) t, parameter μ_d. (ii) Independent — two separate randomly assigned groups of plots; two-sample t on μ_A − μ_B.
10. x̄_A − x̄_B = 4.2 − 5.0 = −0.8. SE = sqrt(1.1²/12 + 1.4²/14) = sqrt(0.10083 + 0.14) = sqrt(0.24083) = 0.49075. With calculator df = 23.85, t = 1.7113. 90% CI = −0.8 ± 1.7113(0.49075) = −0.8 ± 0.840 = (−1.640, 0.040). 2-SampTInt → (−1.640, 0.040). Because the interval contains 0, there is no convincing evidence of a difference in mean wait times. (Conservative df = min(11,13) = 11.)*
11. Paired (same student before/after) → one-sample t on the 7 differences. d̄ = 1.2429, s_d = 0.9880, n = 7 → df = 6. SE = 0.9880/√7 = 0.37344. t = 1.2429/0.37344 = 3.328. Two-sided p = 2·P(t > 3.328 | df = 6) = 0.0158. T-Test on the list → t = 3.33, p = 0.0158. Since 0.0158 < 0.05, reject H₀ — convincing evidence the feedback changes mean essay scores (here, increases them).
12. The 20 subjects are measured twice (before and after), so the data are paired, not two independent groups. Running a 2-SampTTest ignores the pairing and uses a too-large standard error (and the wrong df), which can hide a real effect. The student should compute the 20 differences d = before − after, then run a one-sample t procedure (T-Test / TInterval) on those differences, testing μ_d.
13. (C). The interval (−1.2, 3.6) contains 0, so "no difference" (μ₁ = μ₂) is plausible — no convincing evidence either way. (A)/(B) claim a direction the interval doesn't support; (D) overstates — an interval never proves exact equality.
14. Pairing removes the variability between subjects. With two independent groups, differences between people (some are just faster, healthier, smarter) add noise that inflates the SE. By measuring the same subject twice and looking only at each person's change, that person-to-person variability cancels out, the SE shrinks, and the test has more power to detect a true treatment effect.
StatsIQ · Lesson 27 of 30 · Unit 4 — Inference for Quantitative Data: Means · Phase 5
Disclaimer: StatsIQ is an independent study aid and is not endorsed by or affiliated with the College Board. "AP" and "Advanced Placement" are registered trademarks of the College Board.
Accuracy review: All standard errors, t-statistics, degrees of freedom, p-values, and interval endpoints in this lesson were independently recomputed and verified against TI-84 2-SampTInt / 2-SampTTest (independent, unpooled) and TInterval / T-Test on lists of differences (matched pairs). Reviewed for statistical accuracy by Isaac, retired actuary.