Questions: Autoregressive (AR) Models and Order Selection
5 questions to test your understanding
Score: 0 / 5
Question 1 Multiple Choice
You examine the ACF and PACF plots of a time series. The PACF has large spikes at lags 1 and 2 but is near zero for lags 3 and beyond. The ACF decays gradually. Which model specification does this suggest?
AAR(1), because the first lag is the strongest
BMA(2), because the partial autocorrelations cut off after lag 2
CAR(2), because the PACF cuts off after lag 2 while the ACF decays gradually
DARMA(2,2), because both the ACF and PACF show some nonzero values
The diagnostic signature of an AR(p) process is exactly this pattern: the PACF cuts off sharply after lag p (dropping to near zero), while the ACF decays gradually (often exponentially or in a damped oscillation). An MA(q) process shows the opposite: ACF cuts off, PACF decays. ARMA processes show both gradually decaying. Here, sharp PACF cutoff at lag 2 and gradual ACF decay clearly point to AR(2).
Question 2 Multiple Choice
A researcher fits an AR(3) model to a monthly time series without first testing for stationarity. The series turns out to have a unit root. What is the most serious consequence?
AThe model will overfit and select too many lags via AIC
BThe estimated φ coefficients will all equal 1 by definition
CThe estimates will be spurious and standard inference breaks down — t-statistics and confidence intervals are invalid for nonstationary series
DThe model will fail to converge because AR models require finite variance
Fitting an AR model to a nonstationary series produces spurious results. The assumption underlying AR modeling — that past values carry genuine predictive information in a stable statistical relationship — requires stationarity. With a unit root, shocks never die out, the variance grows without bound, and the distribution theory behind standard errors and t-tests collapses. This is why stationarity testing (ADF, KPSS) must precede AR model fitting.
Question 3 True / False
For an AR(p) process, the autocorrelation function (ACF) cuts off sharply to zero after lag p, making the ACF the primary tool for identifying the correct order.
TTrue
FFalse
Answer: False
This describes the MA(q) process, not the AR(p) process. For AR(p), it is the PACF that cuts off sharply after lag p — the ACF decays gradually. The ACF captures total correlation including indirect effects through intermediate lags, so even an AR(1) will have nonzero ACF at lags 2, 3, etc. (via the chain yₜ → yₜ₋₁ → yₜ₋₂). The PACF removes those indirect effects, revealing only the direct lag coefficients.
Question 4 True / False
An AR model regresses the current value of a time series on its own past values, exploiting the idea that a stationary series can contain predictive information about itself.
TTrue
FFalse
Answer: True
This is the defining structure of autoregressive models. 'Autoregressive' means self-regressing — the series predicts itself using its own history. The stationarity requirement ensures that this predictive relationship is stable over time: the same lag coefficients that held last year still hold this year. Without stationarity, the relationship drifts, and regression on past values produces meaningless results.
Question 5 Short Answer
Why does the PACF cut off after lag p for an AR(p) process, while the ACF does not?
Think about your answer, then reveal below.
Model answer: The ACF at lag k measures total correlation between yₜ and yₜ₋ₖ — including all indirect paths through intermediate lags. In an AR(2), for instance, yₜ is correlated with yₜ₋₃ through the chain yₜ → yₜ₋₁ → yₜ₋₂ → yₜ₋₃, even though yₜ₋₃ has no direct coefficient in the model. The PACF controls for all shorter lags and measures only the direct contribution of each lag. Since an AR(p) has direct coefficients only for lags 1 through p, the PACF drops to zero after lag p — there are no more direct effects to detect.
This is why the PACF is the right diagnostic tool for AR order selection. It strips away the indirect correlations that make the ACF decay gradually, revealing the 'true' lag structure. The symmetry: for MA(q), the ACF cuts off (direct moving-average structure) and the PACF decays; for AR(p), the PACF cuts off and the ACF decays.