Confidence Intervals for Coefficients
A confidence interval (CI) for a coefficient is , where is the critical value for the chosen confidence level. A 95 percent CI collects the values of not rejected by a two-sided test, so it is the dual of the t test. If the interval excludes zero, the coefficient is significant at that level.
Try it yourself
Significance and the confidence interval say the same thing two ways — and “significant” is not the same as “large”.
Take one regression slope β̂ with standard error se. The t-statistic t = β̂ / se lands on the t-density: if it falls in a red rejection tail we reject H₀: β = 0. The same evidence is the interval β̂ ± t*·se below. The two always agree: the interval excludes 0 ⇔ the test rejects.
Discussion.Load “Significant but tiny”: the estimate clears every significance test yet the whole interval sits between 0.01 and 0.03. Would you call that effect important? Now argue the opposite case from “Big but imprecise”. What does each one tell you that a lone p-value hides?
Two-sided test of H₀: β = 0 with t ~ Student-t(df = n − k). The p-value and t* come from the Student-t distribution (regularized incomplete beta), exact to textbook precision. The CI is β̂ ± t*·se; it excludes 0 exactly when p < α.
Why it matters
Instead of a single number, a CI reports a plausible range for the true effect given the sampling noise. Wider intervals signal less precise estimates. Reading whether zero or some economically meaningful value sits inside the interval is often more informative than a bare reject or fail-to-reject.
Formulas
Worked examples
Stata reports educ = 0.092 with a 95 percent interval of [0.078, 0.106] from `regress lwage educ exper`.
Because the whole interval lies above zero, you reject at 5 percent, matching the t test. The interval also says the data are consistent with returns to schooling between about 7.8 and 10.6 percent per year.
Common mistakes
- ✗Saying there is a 95 percent probability the true lies in one computed interval. The parameter is fixed; the 95 percent refers to the procedure across repeated samples.
- ✗Thinking a CI and a two-sided t test can disagree at the same level. They are mathematically equivalent for the same null and level.
- ✗Believing a wider interval means a larger effect. Width reflects precision, driven by the standard error, not the size of the coefficient.
- ✗Assuming a CI accounts for specification error. It captures sampling uncertainty only, not bias from omitted variables or a wrong model.
Revision bullets
- •CI: with from the distribution.
- •A CI is the dual of the two-sided t test; excluding zero means significant.
- •Confidence refers to the procedure over repeated samples, not one interval.
- •Width measures precision, not the magnitude of the effect.
- •A CI reflects sampling noise only, not specification bias.
Quick check
A 95 percent confidence interval for is best interpreted as:
If a 95 percent confidence interval for excludes zero, then a two-sided t test of at 5 percent will:
Connected topics
Sources
- Wooldridge, Introductory Econometrics, Ch. 4Wooldridge (2019), Introductory Econometrics: A Modern Approach, 7th ed., Sec. 4.3
- Hill, Griffiths & Lim, Ch. 3Hill, Griffiths & Lim (2018), Principles of Econometrics, 5th ed., Ch. 3