QM.1: Multiple Regression Basics
Specify and estimate multiple regression models, interpret coefficients, test hypotheses, and evaluate OLS assumptions.
In a simple regression, adding a second independent variable can change the coefficient on the first variable. Why would this happen, and what does it tell you about the relationship between the two independent variables?
Model Specification and OLS Estimation
A multiple regression model extends simple linear regression by including two or more independent variables:
The ordinary least squares (OLS) method estimates the coefficients by minimizing the sum of squared residuals:
Interpreting Coefficients
Each slope coefficient represents the partial effect of on , holding all other independent variables constant. This "ceteris paribus" interpretation is what distinguishes multiple regression from running separate simple regressions.
Example
A model of stock returns:
- A 1% increase in market return is associated with a 1.2% increase in stock return, holding interest rate changes constant
- A 1 percentage point rise in interest rates is associated with a 0.3% decrease in stock return, holding market return constant
In a regression with 3 independent variables and 100 observations, how many degrees of freedom does the error term have?
OLS Assumptions (Classical Linear Regression Model)
For OLS estimators to be BLUE (Best Linear Unbiased Estimators), the following assumptions must hold:
| Assumption | Meaning | Violation |
|---|---|---|
| Linearity | is a linear function of the independent variables | Misspecified functional form |
| Independence | Errors are independent of each other | Serial correlation |
| Homoskedasticity | Error variance is constant: | Heteroskedasticity |
| Normality | Errors are normally distributed | Unreliable hypothesis tests in small samples |
| No multicollinearity | Independent variables are not perfectly correlated | Coefficients cannot be estimated |
| Exogeneity | $E(\epsilon_i | X) = 0$ |
When these assumptions hold, OLS is efficient (minimum variance among linear unbiased estimators). Violations and their remedies are covered in detail in module QM.3.
Hypothesis Testing and Confidence Intervals
Testing Individual Coefficients (t-test)
To test whether is statistically significant:
with degrees of freedom. The most common null hypothesis is (no effect).
A confidence interval for :
Joint Hypothesis Testing (F-test)
The F-test evaluates whether a group of coefficients is jointly significant. For example, testing :
where is the number of restrictions. A significant F-statistic means at least one of the tested variables has a non-zero effect.
ANOVA Decomposition
The regression sum of squares (SSR) captures explained variation; the error sum of squares (SSE) captures unexplained variation.
A regression of quarterly GDP growth on inflation rate and unemployment rate yields: GDP = 4.2 - 0.6(Inflation) - 1.1(Unemployment). The SE of the unemployment coefficient is 0.4, and there are 80 observations. Test whether unemployment significantly affects GDP growth at the 5% level.
Jennifer Walsh, CFA, is an equity analyst at Pemberton Capital. She is building a multiple regression model to explain quarterly returns for a technology ETF. Her model uses three independent variables: S&P 500 return (X1), change in the 10-year Treasury yield in percentage points (X2), and change in the VIX index (X3). She estimates the model using 60 quarters of data.
Her regression output is as follows:
| Variable | Coefficient | Standard Error | t-Statistic |
|---|---|---|---|
| Intercept | 0.008 | 0.004 | 2.00 |
| X1 (S&P 500) | 1.35 | 0.15 | 9.00 |
| X2 (Treasury) | -2.10 | 1.20 | -1.75 |
| X3 (VIX) | -0.04 | 0.01 | -4.00 |
R-squared = 0.82, F-statistic = 85.1, Durbin-Watson = 1.95
The critical t-value at 5% significance (two-tailed) with 56 degrees of freedom is approximately 2.003.
Based on Walsh's regression output, which independent variable is NOT statistically significant at the 5% level?
Explain the difference between a t-test and an F-test in the context of multiple regression. When would you use each one, and what question does each answer?
1. Why is the 'holding other variables constant' interpretation of regression coefficients so important for investment analysis?
2. What practical problems might arise if one of the OLS assumptions is violated in a financial model?
3. How does understanding ANOVA decomposition help you assess whether a model is useful?
Key Concepts:
- Multiple regression: $Y = \beta_0 + \beta_1 X_1 + \cdots + \beta_k X_k + \epsilon$
- Each coefficient measures the partial effect holding other variables constant
- OLS assumptions: linearity, independence, homoskedasticity, normality, no perfect multicollinearity, exogeneity
- t-test: tests individual coefficient significance with $n - k - 1$ df
- F-test: tests joint significance of multiple coefficients
- ANOVA: SST = SSR + SSE decomposes total variation into explained and unexplained
- Degrees of freedom = $n - k - 1$
The next module covers **Evaluating Model Fit** — how to determine whether your regression model actually explains the variation in the dependent variable well. You will learn about R-squared, adjusted R-squared, and model comparison criteria that build directly on the ANOVA decomposition introduced here.
Ready to move on? Mark this module as complete.