A time series is just a regression where the predictor is the past of the response itself. Pick the wrong memory structure and the residuals leak signal you should have captured.
A series is weakly stationary when its mean, variance, and autocovariances do not depend on time. AR and ARCH models assume stationarity. If a series trends, difference it: . If variance grows with level, take logs.
KEY: "Stationary" does not mean "constant." It means the statistical properties are time-invariant. A noisy series oscillating around a fixed mean is stationary; a series drifting upward is not.
Simple exponential smoothing (SES) forecasts the next value as a weighted average of the most recent observation and the previous forecast.
Expanding the recursion shows the geometric decay:
The weights sum to one and decay geometrically. With , the most recent point gets weight 0.30, the next 0.21, then 0.147, fading fast.
Common mistakes
- Forecasting from a non-stationary series without differencing. Fitting AR(1) to a trending series produces near 1.0 and meaningless coefficients. Difference first, check the ACF.
- Confusing in exponential smoothing with in ARCH. Same Greek letter, different roles. The smoothing constant weights past observations; the ARCH coefficient weights past squared residuals.
- Choosing AR order from ACF instead of PACF. ACF decays geometrically for any AR; it does not tell you p. The PACF cutoff identifies p.
Bottom line
- Exponential smoothing forecasts via a weighted average of past values, weights decaying geometrically by smoothing constant . Larger reacts faster; smaller is more stable.
- Holt extends simple smoothing to capture trend; Holt-Winters adds seasonality (using a level, trend, and seasonal smoothing constant).
- An AR(p) model regresses on its own p most recent lags plus white noise. Stationarity requires AR roots outside the unit circle ( for AR(1)).
- Identify the AR order p from the PACF cutoff, not the ACF, which decays geometrically for any AR process and cannot pin down p.
Exam shortcut
When the prompt asks "what comes next" with one smoothing constant and a starting value, it is simple exponential smoothing; iterate . If the constant is given as weighting the prior smoothed value (the Frees and SOA sample-question convention), set first. When the prompt gives lag coefficients on , it is AR; compute and use for the long-run mean.
The full lesson (about 3,868 words, 26 min read) adds 6 worked examples, all 10 common mistakes, a self-check, free in the app.
Learning objectives
- 3b
Browse all free Exam SRM lessons or jump into free Exam SRM practice questions.