Explanation
When we omit a variable from a regression model, the coefficient of the remaining variable is biased. The formula for the omitted variable bias is:
β^1→β1+β2δ
Where:
- β1=1.5 (original coefficient of X1)
- β2=−2 (original coefficient of X2)
- δ=Var(X1)Cov(X1,X2)
Step 1: Calculate Covariance
Given:
- ρX1X2=0.7
- σX12=25⇒σX1=5
- σX22=36⇒σX2=6
Using the correlation formula:
ρX1X2=σX1σX2Cov(X1,X2)
0.7=5×6Cov(X1,X2)
Cov(X1,X2)=0.7×30=21
Step 2: Calculate δ
δ=Var(X1)Cov(X1,X2)=2521=0.84
Step 3: Calculate the Biased Coefficient
β^1=β1+β2δ=1.5+(−2)×0.84=1.5−1.68=−0.18
Therefore, the value of β^1 in the reduced model is -0.18.
This demonstrates the omitted variable bias: when we omit X2 from the model, the coefficient of X1 changes from its true value of 1.5 to -0.18 due to the correlation between X1 and X2._