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.
The order of an ARIMA model is usually denoted by the notation ARIMA(p,d,q), where
is the order of the autoregressive part.
is the order of the differencing (rarely should d > 2 be needed).
is the order of the moving-average process.
Given a dependent time series , mathematically the ARIMA model is written as
where
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 models are expressed in factored form by the notation ARIMA(p,d,q)(P,D,Q), where
is the order of the seasonal autoregressive part.
is the order of the seasonal differencing (rarely should D > 1 be needed).
is the order of the seasonal moving-average process.
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
If the differencing order, autoregressive order, or moving-average order is zero, the notation is further abbreviated as
integrated model or ARIMA(0,d,0)(0,D,0)
autoregressive model or ARIMA(p,0,0)(P,0,0)
integrated autoregressive model or ARIMA(p,d,0)(P,D,0)
moving average model or ARIMA(0,0,q)(0,0,Q)
integrated moving average model or ARIMA(0,d,q)(0,D,Q)
autoregressive moving-average model or ARIMA(p,0,q)(P,0,Q).
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 .
Given the ith predictor time series , the transfer function is written as
where
is the simple order of the differencing for the ith predictor time series, (rarely should > 2 be needed).
is the pure time delay (lag) for the effect of the ith predictor time series, .
is the simple order of the denominator for the ith predictor time series.
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
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
is the seasonal order of the differencing for the ith predictor time series (rarely should D > 1 be needed).
is the seasonal order of the denominator for the ith predictor time series (rarely should P > 2 be needed).
is the seasonal order of the numerator for the ith predictor time series, (rarely should Q > 2 be needed).
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)].