Many observed time series exhibit serial autocorrelation; that is, linear association between lagged observations. This suggests past observations might predict current observations. The autoregressive (AR) process models the conditional mean of yt as a function of past observations, . An AR process that depends on p past observations is called an AR model of degree p, denoted by AR(p).
The form of the AR(p) model in Econometrics Toolbox™ is
(1) |
In lag operator polynomial notation, . Define the degree p AR lag operator polynomial . You can write the AR(p) model as
(2) |
Consider the AR(p) model in lag operator notation,
From this expression, you can see that
(3) |
is the unconditional mean of the process, and is an infinite-degree lag operator polynomial, .
Note
The Constant
property of an arima
model object corresponds to c, and not the unconditional mean μ.
By Wold’s decomposition [2], Equation 3 corresponds to a stationary stochastic process provided the coefficients are absolutely summable. This is the case when the AR polynomial, , is stable, meaning all its roots lie outside the unit circle.
Econometrics Toolbox enforces stability of the AR polynomial. When you specify an AR model using arima
, you get an error if you enter coefficients that do not correspond to a stable polynomial. Similarly, estimate
imposes stationarity constraints during estimation.
[1] Box, G. E. P., G. M. Jenkins, and G. C. Reinsel. Time Series Analysis: Forecasting and Control. 3rd ed. Englewood Cliffs, NJ: Prentice Hall, 1994.
[2] Wold, H. A Study in the Analysis of Stationary Time Series. Uppsala, Sweden: Almqvist & Wiksell, 1938.