Quant Memo
Core

The Lag Operator and Difference Equations

A shorthand notation, $L$, that shifts a time series back one period, letting you write autoregressive models as compact algebraic equations instead of long recursive sentences.

Prerequisites: Stationarity

Time-series models are full of statements like "today's value depends on yesterday's value, which depends on the day before, and so on." Writing that out in words gets unwieldy fast, especially once a model reaches several lags. The lag operator LL is just a piece of notation that fixes this: applied to a series xtx_t, it shifts you back one period, Lxt=xt1Lx_t = x_{t-1}. Apply it twice and you go back two periods, L2xt=xt2L^2 x_t = x_{t-2}, and so on for any number of lags.

That small trick turns recursive time-series equations into ordinary algebra. An AR(1) model, normally written xt=ϕxt1+εtx_t = \phi x_{t-1} + \varepsilon_t, becomes (1ϕL)xt=εt(1 - \phi L)x_t = \varepsilon_t — a difference equation in lag-operator form. The expression (1ϕL)(1 - \phi L) can now be manipulated like a polynomial: factored, inverted, multiplied by other lag polynomials for more complex models. Whether a model is stable (its effects die out rather than explode) comes down to where the roots of that polynomial sit relative to 1, which is exactly the question that unit-root tests are built to answer.

Worked example. Take the AR(1) equation (10.6L)xt=εt(1 - 0.6L)x_t = \varepsilon_t. Formally "inverting" (10.6L)(1 - 0.6L) gives the infinite sum 1+0.6L+0.62L2+0.63L3+1 + 0.6L + 0.6^2L^2 + 0.6^3L^3 + \dots, so xt=εt+0.6εt1+0.36εt2+x_t = \varepsilon_t + 0.6\varepsilon_{t-1} + 0.36\varepsilon_{t-2} + \dots — today's value is a fading, geometrically shrinking blend of all past shocks. Because 0.6<10.6 < 1, the weights shrink to zero and the series is stable; if the coefficient were 1.21.2 instead, the weights would grow without bound.

The lag operator LL turns "shift back one period" into an algebraic symbol, so recursive time-series equations can be factored and solved like ordinary polynomials — and whether those polynomials' roots lie inside or outside the unit circle tells you whether the model is stable or explosive.

Related concepts

Practice in interviews

Further reading

  • Hamilton, Time Series Analysis, ch. 1-2
ShareTwitterLinkedIn