Last pass
Revision That Actually Sticks
Use this after reading the units. It is designed for the night before: recall first, then repair weak spots.
90-Minute Plan
- 0-15 min: read the cheat sheet definitions and formulas aloud.
- 15-35 min: write the components and decomposition answers from memory.
- 35-60 min: solve one odd-window and one even-window moving average problem.
- 60-75 min: rehearse exponential smoothing types and model-selection logic.
- 75-90 min: attempt five practice questions without looking at answers.
Oral Rehearsal
Forecasting
Forecasting estimates future values using available information. It supports planning, decision making, risk reduction, and resource allocation.
Time series
A time series is ordered observations of the same variable over time. Order and spacing matter because observations are dependent.
Components
Trend is long-run movement, seasonality is fixed-period repetition, cyclical movement has no fixed period, and irregular variation is random noise.
Smoothing
Moving average uses equal weights inside a window. Exponential smoothing gives more weight to recent observations.
Formula Dump
Yt = Tt + St + ItYt = Tt x St x Ity_hat_(t+1) = ytMA = sum(window values) / nSES = Ft + alpha(yt - Ft)F_(t+h) = Lt + hBtMAE = average(|et|)MAPE = average(|et / yt|) x 100Numerical Flow
| Problem type | First step | Final check |
|---|---|---|
| Odd moving average | Take rolling sums and divide by n. | Values align to middle year. |
| Even moving average | Compute raw moving averages. | Average adjacent raw MAs to center them. |
| Least-squares line | Code x values around 0. | Substitute the target year's coded x. |
| SES | Choose or identify initial forecast. | Use same alpha consistently down the table. |
| Holt | Initialize level and trend. | Forecast uses level plus h times trend. |