Skip to content
Surf Wiki
Save to docs
general/time-series

From Surf Wiki (app.surf) — the open knowledge base

Lag operator

Operator for offsetting time series elements


Operator for offsetting time series elements

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

:X= {X_1, X_2, \dots }

then

: L X_t = X_{t-1} for all t 1

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

: X_t = L X_{t+1} for all t \geq 1

The lag operator (as well as backshift 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

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

: \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

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

: \varphi (L) X_t = \theta (L) \varepsilon_t

where \varphi (L) and \theta (L) respectively represent the lag polynomials

: \varphi (L) = 1 - \sum_{i=1}^p \varphi_i L^i

and

: \theta (L)= 1 + \sum_{i=1}^q \theta_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 = \frac{\theta (L) }{\varphi (L)}\varepsilon_t,

means the same thing as

:\varphi (L) X_t = \theta (L) \varepsilon_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).

Note that \varphi \left( 1 \right) denotes the sum of coefficients: : \varphi \left( 1 \right) = 1 - \sum_{i=1}^p \varphi_i

Difference operator

Main article: Finite difference

In time series analysis, the first difference operator : \Delta

: \begin{align} \Delta X_t & = X_t - X_{t-1} \ \Delta X_t & = (1-L)X_t ~. \end{align}

Similarly, the second difference operator works as follows:

: \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}

The above approach generalises to the i-th difference operator \Delta ^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 \Omega_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} | \Omega_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

Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Lag operator — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report