Previous Page | Next Page

Forecasting Process Details

Notation for ARIMA Models

A dependent time series that is modeled as a linear combination of its own past values and past values of an error series is known as a (pure) ARIMA model.

Nonseasonal ARIMA Model Notation

The order of an ARIMA model is usually denoted by the notation ARIMA(p,d,q), where

p

is the order of the autoregressive part.

d

is the order of the differencing (rarely should > 2 be needed).

q

is the order of the moving-average process.

Given a dependent time series , mathematically the ARIMA model is written as

     

where

t

indexes time.

is the mean term.

is the backshift operator; that is, .

is the autoregressive operator, represented as a polynomial in the back shift operator: .

is the moving-average operator, represented as a polynomial in the back shift operator: .

is the independent disturbance, also called the random error.

For example, the mathematical form of the ARIMA(1,1,2) model is

     

Seasonal ARIMA Model Notation

Seasonal ARIMA models are expressed in factored form by the notation ARIMA(p,d,q)(P,D,Q), where

P

is the order of the seasonal autoregressive part.

D

is the order of the seasonal differencing (rarely should D > 1 be needed).

Q

is the order of the seasonal moving-average process.

s

is the length of the seasonal cycle.

Given a dependent time series , mathematically the ARIMA seasonal model is written as

     

where

is the seasonal autoregressive operator, represented as a polynomial in the back shift operator:

is the seasonal moving-average operator, represented as a polynomial in the back shift operator:

For example, the mathematical form of the ARIMA(1,0,1)(1,1,2) model is

     

Abbreviated Notation for ARIMA Models

If the differencing order, autoregressive order, or moving-average order is zero, the notation is further abbreviated as

I(d)(D)

integrated model or ARIMA(0,d,0)(0,D,0)

AR(p)(P)

autoregressive model or ARIMA(p,0,0)(P,0,0)

IAR(p,d)(P,D)

integrated autoregressive model or ARIMA(p,d,0)(P,D,0)

MA(q)(Q)

moving average model or ARIMA(0,0,q)(0,0,Q)

IMA(d,q)(D,Q)

integrated moving average model or ARIMA(0,d,q)(0,D,Q)

ARMA(p,q)(P,Q)

autoregressive moving-average model or ARIMA(p,0,q)(P,0,Q).

Notation for Transfer Functions

A transfer function can be used to filter a predictor time series to form a dynamic regression model.

Let be the dependent series, let be the predictor series, and let be a linear filter or transfer function for the effect of on . The ARIMA model is then

     

This model is called a dynamic regression of on .

Nonseasonal Transfer Function Notation

Given the ith predictor time series , the transfer function is written as

     

where

d

is the simple order of the differencing for the ith predictor time series, (rarely should > 2 be needed).

k

is the pure time delay (lag) for the effect of the ith predictor time series, .

p

is the simple order of the denominator for the ith predictor time series.

q

is the simple order of the numerator for the ith predictor time series.

The mathematical notation used to describe a transfer function is

     

where

is the backshift operator; that is, .

is the denominator polynomial of the transfer function for the ith predictor time series: .

is the numerator polynomial of the transfer function for the ith predictor time series: .

The numerator factors for a transfer function for a predictor series are like the MA part of the ARMA model for the noise series. The denominator factors for a transfer function for a predictor series are like the AR part of the ARMA model for the noise series. Denominator factors introduce exponentially weighted, infinite distributed lags into the transfer function.

For example, the transfer function for the ith predictor time series with

time lag is 3

simple order of differencing is one

simple order of the denominator is one

simple order of the numerator is two

would be written as [Dif(1)Lag(3)N(2)/D(1)]. The mathematical notation for the transfer function in this example is

     

Seasonal Transfer Function Notation

The general transfer function notation for the ith predictor time series X with seasonal factors is [Dif(d)(D) Lag(k) N(q)(Q)/ D(p)(P)] where

D

is the seasonal order of the differencing for the ith predictor time series (rarely should D > 1 be needed).

P

is the seasonal order of the denominator for the ith predictor time series (rarely should P > 2 be needed).

Q

is the seasonal order of the numerator for the ith predictor time series, (rarely should Q > 2 be needed).

s

is the length of the seasonal cycle.

The mathematical notation used to describe a seasonal transfer function is

     

where

is the denominator seasonal polynomial of the transfer function for the ith predictor time series:

is the numerator seasonal polynomial of the transfer function for the ith predictor time series:

For example, the transfer function for the ith predictor time series X whose seasonal cycle with

simple order of differencing is two

seasonal order of differencing is one

simple order of the numerator is two

seasonal order of the numerator is one

would be written as [Dif(2)(1) N(2)(1)]. The mathematical notation for the transfer function in this example is

     

Note: In this case, [Dif(2)(1) N(2)(1)] = [Dif(2)(1)Lag(0)N(2)(1)/D(0)(0)].

Previous Page | Next Page | Top of Page