Skip to main content
WAMathematics ApplicationsSyllabus dot point

How do we describe a pattern over time and use it to forecast?

Plot and describe time series, smooth with moving averages, deseasonalise with seasonal indices, fit a trend line and forecast future values.

How to identify trend, seasonal and irregular components, smooth with moving averages, compute and apply seasonal indices to deseasonalise, fit a trend line and forecast.

Generated by Claude Opus 4.78 min answer

Reviewed by: AI editorial process; not yet individually human-reviewed

Have a quick question? Jump to the Q&A page

Jump to a section
  1. What this dot point is asking
  2. Components of a time series
  3. Moving-average smoothing
  4. Seasonal indices
  5. Fitting a trend and forecasting

What this dot point is asking

You must plot the series, identify its components, smooth or deseasonalise, fit a trend, and produce a forecast.

Components of a time series

A time series plots a variable against equally spaced time. It may show:

  • Trend: a long-term upward or downward movement.
  • Seasonal: a regular pattern repeating each fixed period (for example, each quarter).
  • Cyclic: longer wave-like rises and falls not of fixed length.
  • Irregular: random, unpredictable variation.

Moving-average smoothing

A moving average replaces each value with the mean of itself and its neighbours, smoothing out short-term fluctuations to reveal the trend. Use an odd number of points (3, 5, ...) so the average sits on an actual time point. For an even number, such as a 4-point quarterly average, you must centre it by averaging two consecutive moving averages so it aligns with a time point.

Seasonal indices

A seasonal index measures how much a season is above or below the average. The indices for one full cycle must average to 11 (so they sum to the number of seasons). An index of 1.201.20 means that season runs 20%20\% above the typical level; 0.850.85 means 15%15\% below.

Fitting a trend and forecasting

Fit a least-squares line y=a+bty = a + bt to the deseasonalised data, where tt numbers the time periods 1,2,3,1, 2, 3, \dots. To forecast, substitute the future tt to get the trend value, then multiply by that season's index to reseasonalise.