log(wage) = β0 + β1educ + β2exper + β3educ*exper + u
This problem involves two important econometric concepts:
- Log-Level Regression
- Interaction Term
LOG-LEVEL REGRESSION
A log-level regression involves a logarithmically-transformed variable being regressed on an unaltered variable or variables. The interpretation of an estimated coefficient is:
If X changes by one unit, we'd expect to see an associated percent change in Y equal to (β1*100).
Note: This is an approximation; the actual percent change in Y is equal to 100*(eβ - 1) but the approximation works fine in most cases.
Suppose we were dealing with this simple regression:
log(wage) = β0 + β1educ + u
If education increased by 10 years, we'd expect to see an associated percent increase in wage equal to 10*(β1*100).
INTERACTION TERM
The next important concept is the interaction term. Suppose we were dealing with this level-level (no log) version of the model:
wage = β0 + β1educ + β2exper + β3educ*exper + u
Here, if education increased by 10 years, we'd expect to see an associated increase in wage equal to [10*β1 + 10β3exper] = 10[β1 + β3exper]. Note, since the independent variable is wage, this change would be in dollars.
PUTTING IT ALL TOGETHER
Returning to the original model:
log(wage) = β0 + β1educ + β2exper + β3educ*exper + u
An increase of 12 years of education would lead to an associated percent increase in wage equal to 12[(β1 + β3exper)*100]