Solution Methods — Inference Using Normal and t-Distributions
Method 1: One-Sample t-Test Procedure
适用于:单个总体均值检验,方差未知,样本量小。
Step 1: State hypotheses H_0: \mu = \mu_0, \quad H_1: \mu \neq \mu_0 \ (\text{or } > \ \text{or } <)
Step 2: Calculate test statistic
Step 3: Find critical value From t-tables: (two-tail) or (one-tail)
Step 4: Compare and conclude If |t| > t_{\text{crit}}, reject ; otherwise do not reject .
Method 2: Two-Sample Pooled t-Test Procedure
适用于:两个独立总体均值比较,方差相等但未知,样本量小。
Step 1: State hypotheses H_0: \mu_1 = \mu_2, \quad H_1: \mu_1 \neq \mu_2 \ (\text{or } > \ \text{or } <)
Step 2: Pool variances
Step 3: Calculate test statistic
Step 4: Find critical value From t-tables: or
Step 5: Compare and conclude
Method 3: Paired t-Test Procedure
适用于:同一组对象前后两次测量 / 配对设计。
Step 1: Compute differences
Step 2: Calculate mean and variance of differences
Step 3: State hypotheses H_0: \mu_d = d_0, \quad H_1: \mu_d \neq d_0 \ (\text{or } > \ \text{or } <)
Step 4: Calculate test statistic
Step 5: Find critical value From t-tables: or
Step 6: Compare and conclude
Method 4: Large-Sample z-Test Procedure
适用于:大样本()情况下的均值检验。
Step 1: State hypotheses
Step 2: Calculate z-statistic One-sample: or Two-sample:
Step 3: Compare with standard normal critical values , ,
Step 4: Conclude
Method 5: Confidence Interval Construction
One-sample (t):
Two-sample pooled (t):
Paired (t):
Two-sample large (z):
Quick Decision Tree
Is it one sample or two?
├── One sample
│ ├── Small n (n < 30), σ² unknown → One-sample t-test (Method 1)
│ └── Large n (n ≥ 30) → z-test (Method 4)
└── Two samples
├── Paired (same subjects) → Paired t-test (Method 3)
└── Independent
├── Small n, equal σ² → Pooled t-test (Method 2)
└── Large n → z-test (Method 4)