The Big Picture

EC3133

Why Does Econometrics Matter for Policy?

In this class, we learned:

  1. How can econometric errors arise? Some examples are:
  1. What are the consequences of these errors?
  2. How can we avoid them?

A Real-World Example: The Poll Tax Reform in the UK (1990)

Background

The Economic Analysis

Econometric Failures

Key Modeling Errors

  1. Sample Selection Bias:
    • Studies based on middle-class households.
    • Ignored impact on low-income families.
  2. Omitted Variables:
    • Failed to consider:
      • Housing mobility costs.
      • Local service usage patterns.
      • Social cohesion factors.
  3. Misspecified Behavioral Responses:
    • Assumed perfect tax compliance.
    • Ignored avoidance strategies.

The Data Problem

Pre-Implementation Analysis

# True tax burden (progressive with income)
true_burden <- 0.15 * income + rnorm(n, 0, 100)

# Flat poll tax (same for everyone)
poll_tax <- mean(true_burden)

# Calculate distributional impact
impact <- data.frame(
  Income_Quintile = cut(income, breaks = 5, labels = c("Lowest", "Lower", "Middle", "Higher", "Highest")),
  True_Burden = true_burden,
  Poll_Tax = poll_tax,
  Change = poll_tax - true_burden
)
## 
## 
## |Income_Quintile | Avg_Change| Pct_Change|
## |:---------------|----------:|----------:|
## |Lowest          |    1660.26|      91.28|
## |Lower           |     126.16|       5.78|
## |Middle          |   -1821.38|     -32.07|
## |Higher          |   -3644.28|     -49.16|
## |Highest         |   -5693.74|     -60.23|

Policy Consequences

Immediate Effects

Social Impact

Economic Cost

Lessons for Econometric Analysis

1. Distribution Matters

2. Behavioral Responses

3. Data Requirements

Conclusion

  1. Economic models need to consider:
    • Distributional effects.
    • Behavioral responses.
    • Implementation challenges.
  2. Policy analysis should:
    • Use representative data.
    • Consider heterogeneous effects.
    • Account for political feasibility.
  3. The Poll Tax example shows how poor econometric analysis can lead to:
    • Policy failure.
    • Social unrest.
    • Political consequences.