Lag operator

From HandWiki

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

[math]\displaystyle{ X= \{X_1, X_2, \dots \} }[/math]

then

[math]\displaystyle{ L X_t = X_{t-1} }[/math] for all [math]\displaystyle{ t \gt 1 }[/math]

or similarly in terms of the backshift operator B: [math]\displaystyle{ B X_t = X_{t-1} }[/math] for all [math]\displaystyle{ t \gt 1 }[/math]. Equivalently, this definition can be represented as

[math]\displaystyle{ X_t = L X_{t+1} }[/math] for all [math]\displaystyle{ t \geq 1 }[/math]

The lag operator (as well as backshift operator) can be raised to arbitrary integer powers so that

[math]\displaystyle{ L^{-1} X_{t} = X_{t+1} }[/math]

and

[math]\displaystyle{ L^k X_{t} = X_{t-k}. }[/math]

Lag polynomials

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

[math]\displaystyle{ \varepsilon_t = X_t - \sum_{i=1}^p \varphi_i X_{t-i} = \left(1 - \sum_{i=1}^p \varphi_i L^i\right) X_t }[/math]

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

[math]\displaystyle{ \varphi (L) X_t = \theta (L) \varepsilon_t }[/math]

where [math]\displaystyle{ \varphi (L) }[/math] and [math]\displaystyle{ \theta (L) }[/math] respectively represent the lag polynomials

[math]\displaystyle{ \varphi (L) = 1 - \sum_{i=1}^p \varphi_i L^i }[/math]

and

[math]\displaystyle{ \theta (L)= 1 + \sum_{i=1}^q \theta_i L^i.\, }[/math]

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

[math]\displaystyle{ X_t = \frac{\theta (L) }{\varphi (L)}\varepsilon_t, }[/math]

means the same thing as

[math]\displaystyle{ \varphi (L) X_t = \theta (L) \varepsilon_t . }[/math]

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 [math]\displaystyle{ [\ ]_+ }[/math], removes the entries of the polynomial with negative power (future values).

Note that [math]\displaystyle{ \varphi \left( 1 \right) }[/math] denotes the sum of coefficients:

[math]\displaystyle{ \varphi \left( 1 \right) = 1 - \sum_{i=1}^p \varphi_i }[/math]

Difference operator

Main page: Finite difference

In time series analysis, the first difference operator  :[math]\displaystyle{ \Delta }[/math]

[math]\displaystyle{ \begin{align} \Delta X_t & = X_t - X_{t-1} \\ \Delta X_t & = (1-L)X_t ~. \end{align} }[/math]

Similarly, the second difference operator works as follows:

[math]\displaystyle{ \begin{align} \Delta ( \Delta X_t ) & = \Delta X_t - \Delta X_{t-1} \\ \Delta^2 X_t & = (1-L)\Delta X_t \\ \Delta^2 X_t & = (1-L)(1-L)X_t \\ \Delta^2 X_t & = (1-L)^2 X_t ~. \end{align} }[/math]

The above approach generalises to the i-th difference operator [math]\displaystyle{ \Delta ^i X_t = (1-L)^i X_t \ . }[/math]

Conditional expectation

It is common in stochastic processes to care about the expected value of a variable given a previous information set. Let [math]\displaystyle{ \Omega_t }[/math] 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:

[math]\displaystyle{ E [ X_{t+j} | \Omega_t] = E_t [ X_{t+j} ] . }[/math]

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:

[math]\displaystyle{ L^n E_t [ X_{t+j} ] = E_{t-n} [ X_{t+j-n} ] , }[/math]
[math]\displaystyle{ B^n E_t [ X_{t+j} ] = E_t [ X_{t+j-n} ] . }[/math]

See also

References