Static and Finite Distributed Lag Models
A static model relates to in the same period, assuming the effect is immediate. A finite distributed lag (FDL) model lets the effect play out over several periods by including lags of the regressor, as in . The coefficient is the impact propensity (the immediate effect of a one-unit change in ), while the sum is the long-run propensity (LRP), the total effect once the change has fully worked through. FDL models are how econometrics captures dynamics without leaving the linear regression framework.
Why it matters
Many economic responses are not instant. A cut in interest rates today nudges investment a little now and more over the following quarters. The FDL model strings together the contemporaneous variable and its lags so each period’s contribution gets its own coefficient. Add those coefficients up and you get the long-run propensity, the answer to "if rises permanently by one unit, where does eventually settle?"
Formulas
Worked examples
You study how a change in the personal exemption affects the general fertility rate, allowing effects to spread over two years.
Estimate an FDL of order 2: `regress gfr pe L.pe L2.pe, robust`. The coefficient on `pe` is the impact propensity, and the LRP is the sum of the three coefficients. Test the LRP with `lincom pe + L.pe + L2.pe` to get a point estimate and standard error for the total effect.
A static model `regress consumption income, robust` assumes spending reacts fully within the same period.
If consumption actually adjusts with a delay, the static specification is too restrictive. Adding `L.income` and `L2.income` lets the data reveal whether the response is spread over time, turning the static model into an FDL.
Common mistakes
- ✗The impact propensity is the full effect of a change in . It is only the immediate effect; the long-run propensity sums the current and lagged coefficients.
- ✗The long-run propensity is just the largest lag coefficient. The LRP is the sum of all the distributed-lag coefficients, not any single one.
- ✗Static models are wrong and FDL models are right. A static model is fine when the response really is contemporaneous; the FDL generalizes it for delayed effects.
- ✗You can read the standard error of the LRP straight from the regression table. You must combine the coefficients, for example with Stata’s `lincom`, because the LRP standard error depends on their covariances.
Revision bullets
- •Static model assumes an immediate effect of on
- •FDL adds lags so effects spread over time
- •Impact propensity is , the contemporaneous effect
- •Long-run propensity is the sum
- •Use `lincom` for a valid standard error on the LRP
Quick check
In the FDL model , the long-run propensity is:
A researcher reports impact and lag coefficients 0.3, 0.2, 0.1. What does the impact propensity tell us?
Connected topics
Sources
- Wooldridge (2019), §10.2Wooldridge, Jeffrey M. Introductory Econometrics: A Modern Approach. 7th ed. Cengage, 2019.Defines static and finite distributed lag models and the impact and long-run propensities.
- Wooldridge (2019), Example 10.4Wooldridge, Jeffrey M. Introductory Econometrics: A Modern Approach. 7th ed. Cengage, 2019.Fertility-rate FDL example used to illustrate estimating and testing the long-run propensity.