Quarterly loss ratios for a workers' compensation book wander but never explode. Last quarter's number tells you something about this quarter's, and the relationship is linear, stable, and exploitable. Time series models with constant variance turn that intuition into forecasts.
Why constant variance matters. Every model in this lesson assumes the innovation is white noise: mean zero, variance , uncorrelated across time. If variance drifts with the level (heteroscedasticity), you need a different toolkit. Here the spread stays flat; only the mean carries memory.
A weakly stationary series has constant mean , constant variance , and autocovariance that depends only on lag , not on . The autocorrelation function (ACF) is .
KEY: Stationarity is what lets you estimate by averaging across time. Without it, every is a different distribution and one sample tells you nothing.
An AR(p) regresses today on the last values plus white noise:
Common mistakes
- Confusing ACF and PACF cutoffs. AR(p) has PACF that cuts off (not ACF). MA(q) has ACF that cuts off (not PACF). Reversing them leads to fitting an MA(1) when the data want AR(1). The wrong-order forecast at for the Example 1 data would be 0.60 (MA(1) reverts immediately) instead of 0.7225.
- Computing AR(1) variance as instead of . With , the divisor 0.51 nearly doubles the variance. Skipping it gives 0.0009 when the true unconditional variance is 0.001765.
- Treating an MA(1) with as valid. Both and match the ACF, but only is invertible. The non-invertible root is mathematically real but software returns the invertible one; flagging the wrong root costs the question.
Bottom line
- AR(p): . PACF cuts off at lag ; ACF decays.
- MA(q): . ACF cuts off at lag ; PACF decays.
- ARMA(p,q): both ACF and PACF decay (no clean cutoff).
- Stationarity (AR): roots of lie outside the unit circle. For AR(1): .
Exam shortcut
If the ACF dies geometrically and the PACF shows one clean spike, fit AR(1) and read directly off lag 1. If the ACF shows one spike and the PACF tails off, fit MA(1) and back out from (the smaller root for invertibility). If both ACF and PACF tail off and AIC/BIC favor a small mixed model, try ARMA(1,1) before adding more AR or MA terms.
The full lesson (about 2,389 words, 16 min read) adds 2 worked examples, all 6 common mistakes, a self-check, free in the app.
Learning objectives
- D1
Browse all free MAS-II lessons or jump into free MAS-II practice questions.