Last modified: June 14, 2023

This article is written in: πŸ‡ΊπŸ‡Έ

Backward Shift Operator

The backward shift operator (denoted by B) is a powerful tool in time series analysis, used to simplify the notation and manipulation of time series models. The operator shifts the time index of a time series back by one period, making it useful in autoregressive, moving average, and mixed models.

For a time series Xt, the backward shift operator is defined as:

BXt=Xtβˆ’1

This shifts the time series back by one time unit. Higher powers of the backward shift operator correspond to multiple shifts:

B2Xt=B(BXt)=BXtβˆ’1=Xtβˆ’2

BkXt=Xtβˆ’k

This property is central to compactly expressing time series models such as autoregressive (AR), moving average (MA), and ARMA models.

Example 1: Random Walk

Consider a simple random walk model:

Xt=Xtβˆ’1+Zt

Where Zt is white noise. Using the backward shift operator, this can be written as:

Xt=BXt+Zt

Rearranging, we get:

(1βˆ’B)Xt=Zt

Here, (1βˆ’B) operates on Xt. We define this operator as:

Ο•(B)=1βˆ’B

Thus, the random walk can be compactly expressed as:

Ο•(B)Xt=Zt

Where Zt is white noise. This operator form is useful in expressing and analyzing the structure of the random walk process.

Example 2: Moving Average (MA) Process

Consider a moving average of order 2 (MA(2)) process:

Xt=Zt+0.2Ztβˆ’1+0.04Ztβˆ’2

Using the backward shift operator, this can be written as:

Xt=Zt+0.2BZt+0.04B2Zt

Factoring the right-hand side:

Xt=(1+0.2B+0.04B2)Zt

Let’s define:

Ξ²(B)=1+0.2B+0.04B2

Thus, the MA(2) process can be expressed as:

Xt=Ξ²(B)Zt

This operator form simplifies the analysis of MA models by capturing the entire structure of the model in the polynomial Ξ²(B).

Example 3: Autoregressive (AR) Process

Consider an autoregressive process of order 2 (AR(2)):

Xt=0.2Xtβˆ’1+0.3Xtβˆ’2+Zt

Using the backward shift operator, this becomes:

Xt=0.2BXt+0.3B2Xt+Zt

Rearranging:

(1βˆ’0.2Bβˆ’0.3B2)Xt=Zt

Let’s define the AR operator as:

Ο•(B)=1βˆ’0.2Bβˆ’0.3B2

Thus, the AR(2) process can be written as:

Ο•(B)Xt=Zt

This is the standard form of an autoregressive model, where the polynomial Ο•(B) captures the lagged dependencies of Xt on its past values.

Example 4: Moving Average (MA) Process with Drift

An MA(q) process with drift is given by:

Xt=ΞΌ+Ξ²0Zt+Ξ²1Ztβˆ’1+β‹―+Ξ²qZtβˆ’q

Using the backward shift operator:

Xt=ΞΌ+Ξ²0Zt+Ξ²1BZt+β‹―+Ξ²qBqZt

Factoring the right-hand side:

Xt=ΞΌ+Ξ²(B)Zt

Where:

Ξ²(B)=Ξ²0+Ξ²1B+β‹―+Ξ²qBq

Subtracting the drift term ΞΌ:

Xtβˆ’ΞΌ=Ξ²(B)Zt

This form is useful for analyzing MA processes with drift, where Ξ²(B) captures the lagged effects of the noise terms.

Example 5: Autoregressive (AR) Process of Order p

An autoregressive process of order p (AR(p)) is given by:

Xt=Ο•1Xtβˆ’1+Ο•2Xtβˆ’2+β‹―+Ο•pXtβˆ’p+Zt

Using the backward shift operator:

Xt=Ο•1BXt+Ο•2B2Xt+β‹―+Ο•pBpXt+Zt

Rearranging:

(1βˆ’Ο•1Bβˆ’Ο•2B2βˆ’β‹―βˆ’Ο•pBp)Xt=Zt

This can be written as:

Ο•(B)Xt=Zt

Where:

Ο•(B)=1βˆ’Ο•1Bβˆ’Ο•2B2βˆ’β‹―βˆ’Ο•pBp

This formulation represents the AR(p) process in terms of the backward shift operator, with Ο•(B) summarizing the autoregressive structure.

Table of Contents

    Backward Shift Operator
    1. Example 1: Random Walk
    2. Example 2: Moving Average (MA) Process
    3. Example 3: Autoregressive (AR) Process
    4. Example 4: Moving Average (MA) Process with Drift
    5. Example 5: Autoregressive (AR) Process of Order p