📘 Section 12.3 – Confidence Intervals in Multiple Linear Regression

🎯 Purpose of Confidence Intervals

Confidence intervals provide a range of plausible values for regression coefficients. They help assess the precision of the estimated coefficients and support inference about the population parameters.

🧮 Confidence Interval Formula

The 100(1−α)% confidence interval for the regression coefficient βj is:

β̂j ± tα/2, n−k−1 × se(β̂j)

📊 GPA Model Example

Let’s consider the GPA model:

GPA = β₀ + β₁×Study + β₂×Sleep + β₃×Attendance + ε

Suppose we have the following estimates and standard errors from a regression output:

CoefficientEstimateStandard Error95% CI
β₀1.2560.3150.529 to 1.983
β₁ (Study)0.0820.0180.038 to 0.126
β₂ (Sleep)0.2910.0450.188 to 0.394
β₃ (Attendance)0.0140.0060.000 to 0.028

These intervals are calculated using the t-distribution with degrees of freedom n − k − 1, where n = 5 students and k = 3 predictors, so df = 1.

🔍 Interpretation

🧠 Summary