Autoregressive Model

autoregressiontime-seriesdifference-equationstationarityyule-walkerserial-correlationarmaforecasting

Definition

An autoregressive model of order pp, AR(pp), expresses the current value of a time series as a linear combination of its own pp most recent past values plus a random innovation: yt=c+ϕ1yt1++ϕpytp+εt,εtWN(0,σ2).y_t = c + \phi_1 y_{t-1} + \cdots + \phi_p y_{t-p} + \varepsilon_t,\qquad \varepsilon_t \sim \text{WN}(0,\sigma^2). Introduced by Yule (1927) to model Wolfer's sunspot numbers, it treats an observed series as a stochastic difference equation driven by random disturbances (innovations) rather than as a fixed periodic function contaminated by measurement error. It is the univariate building block underlying VARs, ARMA/ARIMA models, and much of time-series econometrics.

Key Ideas

How It Works

Estimate the coefficients by OLS (regress yty_t on its lags), Yule-Walker (autocovariance matching), or maximum likelihood / Bayesian methods; select the order pp by information criteria (AIC/BIC) or the partial autocorrelation function (which cuts off at lag pp for a pure AR). Forecasts iterate the fitted recursion forward, with forecast-error variance accumulating through the propagated innovations and converging (for a stationary process) to the unconditional variance.

Why It Matters

Open Questions

Related