Neha Patil (Editor)

Lag operator

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In time series analysis, the lag operator or backshift operator operates on an element of a time series to produce the previous element. For example, given some time series

Contents

X = { X 1 , X 2 , }

then

L X t = X t 1 for all t > 1

or equivalently

X t = L X t + 1 for all t 1

where L is the lag operator. Sometimes the symbol B for backshift is used instead. Note that the lag operator can be raised to arbitrary integer powers so that

L 1 X t = X t + 1

and

L k X t = X t k .

Lag polynomials

Also polynomials of the lag operator can be used, and this is a common notation for ARMA (autoregressive moving average) models. For example,

ε t = X t i = 1 p φ i X t i = ( 1 i = 1 p φ i L i ) X t

specifies an AR(p) model.

A polynomial of lag operators is called a lag polynomial so that, for example, the ARMA model can be concisely specified as

φ ( L ) X t = θ ( L ) ε t

where φ ( L ) and θ ( L ) respectively represent the lag polynomials

φ ( L ) = 1 i = 1 p φ i L i

and

θ ( L ) = 1 + i = 1 q θ i L i .

Polynomials of lag operators follow similar rules of multiplication and division as do numbers and polynomials of variables. For example,

X t = θ ( L ) φ ( L ) ε t ,

means the same thing as

φ ( L ) X t = θ ( L ) ε t .

As with polynomials of variables, a polynomial in the lag operator can be divided by another one using polynomial long division. In general dividing one such polynomial by another, when each has a finite order (highest exponent), results in an infinite-order polynomial.

An annihilator operator, denoted [   ] + , removes the entries of the polynomial with negative power (future values).

Difference operator

In time series analysis, the first difference operator Δ is a special case of lag polynomial.

Δ X t = X t X t 1 Δ X t = ( 1 L ) X t   .

Similarly, the second difference operator works as follows:

Δ ( Δ X t ) = Δ X t Δ X t 1 Δ 2 X t = ( 1 L ) Δ X t Δ 2 X t = ( 1 L ) ( 1 L ) X t Δ 2 X t = ( 1 L ) 2 X t   .

The above approach generalises to the i-th difference operator Δ i X t = ( 1 L ) i X t   .

Conditional expectation

It is common in stochastic processes to care about the expected value of a variable given a previous information set. Let Ω t be all information that is common knowledge at time t (this is often subscripted below the expectation operator); then the expected value of the realisation of X, j time-steps in the future, can be written equivalently as:

E [ X t + j | Ω t ] = E t [ X t + j ] .

With these time-dependent conditional expectations, there is the need to distinguish between the backshift operator (B) that only adjusts the date of the forecasted variable and the Lag operator (L) that adjusts equally the date of the forecasted variable and the information set:

L n E t [ X t + j ] = E t n [ X t + j n ] , B n E t [ X t + j ] = E t [ X t + j n ] .

References

Lag operator Wikipedia


Similar Topics