Skip to content

📊 Econometrics & OLS Regression Analysis

Econometrics provides the statistical machinery to estimate causal economic relationships, test theoretical hypotheses, and forecast economic time series using empirical observational data.


1. 📐 The Classical Linear Regression Model (CLRM)

Consider the population regression function with k regressors and N observations:

yi=β0+β1x1i+β2x2i++βkxki+uiy=Xβ+u

1.1 Ordinary Least Squares (OLS) Estimator

OLS minimizes the Sum of Squared Residuals (SSR):

minβ^SSR(β^)=i=1Nu^i2=(yXβ^)(yXβ^)

Taking the matrix derivative and setting to zero yields the Normal Equations:

XXβ^=Xyβ^OLS=(XX)1Xy

For simple univariate regression (yi=β0+β1xi+ui):

β^1=(xix¯)(yiy¯)(xix¯)2=Cov^(x,y)Var^(x),β^0=y¯β^1x¯

2. 🛡️ The Gauss-Markov Theorem & BLUE

Gauss-Markov Theorem

Under assumptions A1–A5, the OLS estimator β^OLS is the Best Linear Unbiased Estimator (BLUE) (it possesses minimum variance among all linear unbiased estimators).

2.1 The Five Classical Assumptions

  1. A1 (Linear in Parameters): y=Xβ+u.
  2. A2 (Strict Exogeneity): E[uiX]=0 (error term has conditional mean zero).
  3. A3 (No Perfect Multicollinearity): rank(X)=k+1<N (XX is invertible).
  4. A4 (Homoskedasticity): Var(uiX)=σ2 (constant error variance).
  5. A5 (No Serial Autocorrelation): Cov(ui,ujX)=0 for ij.

If errors are also normally distributed (uiN(0,σ2)), β^N(β,σ2(XX)1).


3. ⚠️ Endogeneity & Omitted Variable Bias (OVB)

When a regressor is correlated with the error term (Cov(xj,u)0), OLS is biased and inconsistent.

3.1 Omitted Variable Bias Formula

Suppose the true model is y=β0+β1x1+β2x2+u, but x2 (e.g. unobserved ability) is omitted from the estimated regression y=β~0+β~1x1+e:

E[β~1]=β1+β2Effect of omitted on y×Cov(x1,x2)Var(x1)Relationship between x1 and omitted x2
                          Sign of Bias on β_1
                     Cov(x_1, x_2) > 0    Cov(x_1, x_2) < 0
  ──────────────────────────────────────────────────────────
  β_2 > 0 (Positive)    Positive Bias        Negative Bias
  β_2 < 0 (Negative)    Negative Bias        Positive Bias

3.2 Instrumental Variables (IV / Two-Stage Least Squares)

An instrument Z must satisfy:

  1. Instrument Relevance: Cov(Z,X)0 (Strong first stage).
  2. Instrument Exogeneity (Exclusion Restriction): Cov(Z,u)=0 (Z affects y only through X).
β^IV=Cov^(Z,y)Cov^(Z,X)

4. 🎯 Olympiad-Level Worked Master Problem

Master Problem: Omitted Variable Bias Calculation

Problem: An econometrician estimates the wage equation:

ln(Wage)=β0+β1Education+β2Ability+u

where true β1=0.08 (8% return per year of schooling) and true β2=0.04. The auxiliary regression of Ability on Education yields Ability=2.0+0.5Education+ϵ.

  1. Calculate the probability limit of the short regression coefficient β~1 when Ability is omitted.
  2. Calculate the percentage overstatement of the true return to education.

Step-by-Step Rigorous Solution:

  1. Apply Omitted Variable Bias Equation:

    plim β~1=β1+β2×Cov(Education,Ability)Var(Education)

    The auxiliary slope is γ^1=Cov(Education,Ability)Var(Education)=0.5.

  2. Compute Expected Estimate β~1:

    plim β~1=0.08+(0.04×0.5)=0.08+0.02=0.10(10.0%)
  3. Compute Overstatement Percentage:

    Overstatement=0.100.080.08×100=0.020.08×100=25.0%

    Finding: Omitting unobserved ability leads to a 25% upward bias in the estimated economic return to schooling.