The Multiple Regression Model
The multiple linear regression (MLR) model writes , so one equation holds explanatory variables plus an error . Each slope is a partial effect, the change in from a one-unit rise in holding the other regressors fixed. Adding controls lets you measure a ceteris paribus effect from observational data without a controlled experiment.
Why it matters
Simple regression blames everything on one variable. Multiple regression gives each input its own dial, so you can ask what educ does to wage while keeping exper at the same level. The error still soaks up everything you did not measure.
Formulas
Worked examples
You model log wage on schooling and experience with `regress lwage educ exper`.
The fitted equation is . The coefficient on educ, about 0.098, is the effect of one more year of school holding experience fixed, roughly a 9.8 percent wage gain.
Common mistakes
- ✗Thinking in MLR is the same number as the slope from a simple regression of on . It only matches when the added regressors are uncorrelated with .
- ✗Reading as a total effect. It is the effect with the other listed variables held fixed, not the effect once you let everything move.
- ✗Believing more regressors always means a more credible causal estimate. Adding a variable that sits on the causal pathway can distort the effect you care about.
- ✗Treating the intercept as meaningless. It is the predicted when every regressor equals zero, which can be far outside the data range.
Revision bullets
- •MLR: , one error term for all unobservables.
- •Each is a partial (ceteris paribus) effect, not a raw correlation.
- •Controls let observational data approximate a ceteris paribus comparison.
- •MLR slopes differ from simple-regression slopes unless regressors are uncorrelated.
Quick check
In , what does measure?
When does the MLR coefficient on equal the simple-regression slope of on ?
Connected topics
Sources
- Wooldridge, Introductory Econometrics, Ch. 3Wooldridge (2019), Introductory Econometrics: A Modern Approach, 7th ed., Ch. 3
- Hill, Griffiths & Lim, Ch. 5Hill, Griffiths & Lim (2018), Principles of Econometrics, 5th ed., Ch. 5