Student’s t and its table
◈ 6 cardsWhen s replaces σ the standardised mean has heavier tails than z — the t-distribution with df = n − 1 — and its table gives upper-tail critical values that shrink toward z as df grows.
Why a second table
L9.1's interval needed . In practice is estimated by the sample SD , and the standardised sample mean becomes
This is not a standard normal. The denominator now carries its own sampling variability — is sometimes too small, sometimes too large — and the extra randomness pushes more probability into the tails. The result is Student's t-distribution: symmetric, bell-shaped, centred at 0 like , but with heavier tails, so a given tail probability sits further out than it does for .
How much heavier depends on how well estimates , which depends on the sample size. The family is indexed by degrees of freedom,
for a single sample — the of the sample variance. With small df the tails are fat; as df grows, pins down and converges to . The row of the t-table is the z-table's critical values.
Reading the table forward
The course's t-table lists upper-tail critical values : the value with area to its right, for and df and . Row = df, column = tail area. Watch the 0.025 column shrink toward 1.960:
| df | |
|---|---|
| 4 | 2.776 |
| 9 | 2.262 |
| 19 | 2.093 |
| 1.960 |
For a 95 % interval from the multiplier is 2.776, not 1.96 — 42 % wider, the price of estimating from four degrees of freedom. Two more forward lookups: (row 19, column 0.05 — the 90 % interval multiplier for ), and (the 99 % multiplier for ).
By symmetry the lower-tail value is the negative: . And a two-sided interval at level uses the column — 95 % reads the 0.025 column, exactly as served L9.1.
Reading the table backward — bracketing
Module 10 will hand you a computed and ask for its tail probability. The table cannot give it exactly; it gives a bracket. Suppose with df . Row 14 reads 1.761 in the 0.05 column and 2.145 in the 0.025 column; 2.1 sits between them, so
The area to the right of 2.1 is less than the area to the right of 1.761 and more than the area to the right of 2.145. Never interpolate — the course brackets, and the two bounds are the answer. R's pt(2.1, 14, lower.tail = FALSE) would give 0.0272, safely inside.
What the heavy tails are not about
The tails are heavy because estimates — not because is small in itself, and not because the population is skewed. A small makes the estimate worse, which is why df matters; a skewed population is a different problem, addressed by the robustness guideline in L9.4. Get the reason right: the paper asks it as a one-line question.