Software hands you a fitted ARIMA, a coefficient table, residual diagnostics, and a forecast. The exam asks you to read it, sanity check it, and produce a point forecast plus a 95% interval. Every number in the output has a job.
Why the output exists. A fitted time series model is a recipe: identify the structure (AR, MA, ARMA, ARIMA), estimate the coefficients, validate the assumptions, then project forward. The software prints every ingredient. Your job is to read the prints and answer two questions: is the model adequate, and what does it predict next?
Every estimation routine reports, for each parameter, the point estimate or , its standard error, a t-ratio, and a p-value. The standard error comes from the observed information matrix at the maximum likelihood estimate.
KEY: A coefficient is statistically significant when (large samples) or roughly 2. Keep significant terms. Drop a non-significant lag only if dropping it does not worsen residual diagnostics.
Common mistakes
- Confusing intercept with mean. Software prints , but the long-run mean is . Plugging where belongs in the mean-corrected forecast formula gives wrong answers. With and , reporting 2.40 instead of 6.00 as the long-run mean is a classic slip.
- Reading PACF cutoff for an MA process. MA(q) cuts off in the ACF at lag q and tails off in the PACF. Reversing this picks the wrong family. A clean ACF cutoff at lag 1 with a tailing PACF is an MA(1), not an AR(1).
- Treating Ljung-Box rejection as good news. A small p-value (below 0.05) rejects the white-noise null, meaning the model failed. Candidates sometimes write "p = 0.01, model fits well" because small p-values feel like a win.
Bottom line
- Model ID: white noise has flat ACF and PACF; AR(p) cuts off in PACF at lag p; MA(q) cuts off in ACF at lag q; ARMA tails off in both.
- Coefficient table: each row gives estimate, standard error, t-ratio, p-value. A term is significant when ; drop it if and diagnostics still pass.
- Long-run mean is , not the printed intercept .
- Residual diagnostics: Ljung-Box p-value above 0.05 means no leftover autocorrelation; flat squared-residual ACF means constant variance holds, while spikes signal GARCH.
Exam shortcut
If the question gives a coefficient table and asks for the forecast, write the recursion first, then iterate. Plug numbers only after the formula is on paper. If the question gives two models and asks which is better, compute AIC by ; if both match, pick the higher .
The full lesson (about 2,361 words, 16 min read) adds 2 worked examples, all 6 common mistakes, a self-check, free in the app.
Learning objectives
- D4
Browse all free MAS-II lessons or jump into free MAS-II practice questions.