Regression Coefficients (t-Test & Confidence Intervals)
Tests the significance of individual regression coefficients via t-test and determines confidence intervals.
Description
For each regression coefficient βⱼ, a t-test checks whether the coefficient is significantly different from zero (H₀: βⱼ = 0). The standard error SE(βⱼ) is derived from the diagonal of the variance-covariance matrix of the estimators. The t-statistic tⱼ = βⱼ / SE(βⱼ) follows a t-distribution with n − p degrees of freedom. A p-value < α indicates that the predictor makes a significant contribution to the model. The confidence intervals [βⱼ ± t_{α/2} · SE(βⱼ)] specify the range in which the true coefficient lies at the chosen confidence level.
Formulas
Assumptions
- Residuals are normally distributed (for exact t-distribution)
- Homoscedasticity: constant residual variance across all observations
- No perfect multicollinearity (X'X must be invertible)
- Independence of observations
Limitations
- With strong multicollinearity (high VIF), SEs are inflated and t-tests lose power
- With non-normal residuals, p-values are only asymptotically correct (large n)
- Individual t-tests do not account for multiple testing — with many terms, the probability of false positives increases
References
- Montgomery, D.C., Peck, E.A., Vining, G.G., Introduction to Linear Regression Analysis, 6th Ed., Wiley — Chapter 2.4 & 3.3
- Kutner, M.H. et al., Applied Linear Statistical Models, 5th Ed., McGraw-Hill — Chapter 6.5
- NIST/SEMATECH e-Handbook of Statistical Methods, Section 4.3.1