Autoregressive Model

AR(p) Model

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, yt1,yt2,,ytp. 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

yt=c+ϕ1yt1++ϕpytp+εt,(1)
where εt is an uncorrelated innovation process with mean zero.

In lag operator polynomial notation, Liyt=yti. Define the degree p AR lag operator polynomial ϕ(L)=(1ϕ1LϕpLp) . You can write the AR(p) model as

ϕ(L)yt=c+εt.(2)
The signs of the coefficients in the AR lag operator polynomial, ϕ(L), are opposite to the right side of Equation 1. When specifying and interpreting AR coefficients in Econometrics Toolbox, use the form in Equation 1.

Stationarity of the AR Model

Consider the AR(p) model in lag operator notation,

ϕ(L)yt=c+εt.

From this expression, you can see that

yt=μ+ϕ1(L)εt=μ+ψ(L)εt,(3)
where

μ=c(1ϕ1ϕp)

is the unconditional mean of the process, and ψ(L) is an infinite-degree lag operator polynomial, (1+ψ1L+ψ2L2+).

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 ψi are absolutely summable. This is the case when the AR polynomial, ϕ(L), 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.

References

[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.

See Also

|

Related Examples

More About