How do we smooth out the noise in a time series to reveal its trend?
Smooth a time series using moving averages, including centred even-order averages, and using median smoothing.
How to smooth a time series with odd and even moving averages, apply centring for even-order averages, and use median smoothing to reveal the underlying trend.
Reviewed by: AI editorial process; not yet individually human-reviewed
Have a quick question? Jump to the Q&A page
Jump to a section
What this dot point is asking
You must smooth a time series with odd and even moving averages, centre even-order averages, and use median smoothing.
Why smooth
A time series mixes a long-term trend with seasonal, cyclic and irregular (random) variation. Smoothing averages out the irregular and seasonal wobbles so the trend stands out, making it easier to see direction and to fit a trend line later.
Odd-order moving averages
An odd-order moving average replaces each value with the mean of itself and an equal number of neighbours on each side.
Odd orders are convenient because the average lines up with an actual time point. The first and last points cannot be smoothed (no neighbour on one side), so the smoothed series is shorter at each end.
Even-order moving averages and centring
A four-point moving average sums four consecutive values, whose midpoint lies between the second and third time points, so it does not align with any data point.
Four-point centring is the standard tool for quarterly data, because four quarters make one year and the centred average removes the seasonal cycle.
Median smoothing
Median smoothing replaces each value with the median (middle value) of itself and its neighbours instead of the mean. Because the median ignores extreme values, median smoothing is resistant to outliers: a single freak data point does not drag the smoothed value the way it would with a mean. For a three-point median smooth, sort each group of three and take the middle one. For example, the three values (with a spike) give a median of , whereas their mean of is pulled up by the spike, showing how the median resists the outlier.
Choosing the order of a moving average
The order of a moving average should match any cycle in the data. For quarterly data with a yearly season, a four-point (centred) average removes the seasonal swing because it averages exactly one full year; for monthly data, a twelve-point centred average does the same. A larger order smooths more heavily, flattening the series towards its trend but losing more points at each end. The art is choosing an order large enough to remove the seasonal noise yet small enough to keep the trend's shape.
Exam-style practice questions
Practice questions written in the style of SCSA exam questions on this dot point, with worked answer explainers. The year tag is the paper they imitate, not the source.
WACE 20226 marksA time series of daily sales is . (a) Calculate the three-point moving average for the second, third and fourth data points. (b) Explain what moving-average smoothing achieves.Show worked answer →
A three-point moving average averages each value with its two neighbours.
(a) Second point (centred on ): . Third point (centred on ): . Fourth point (centred on ): . (4 marks)
(b) Moving-average smoothing reduces the irregular (random) fluctuations and any seasonal variation, revealing the underlying trend of the series more clearly. (2 marks)
Markers reward correct three-point averages centred on each point and the noise-reduction purpose.
WACE 20245 marksExplain why a four-point moving average must be centred, and outline how the centring is done.Show worked answer →
An even-order average falls between two time points, so it must be re-aligned.
A four-point moving average sums four consecutive values, but four values have their midpoint between the second and third time points, so the average does not line up with any original data point. (2 marks)
Centring takes two consecutive four-point averages and averages them, which shifts the result back onto an actual time point. Equivalently, it applies weights of half at the ends and one in the middle across five points. (3 marks)
Markers reward the off-point problem for even orders and the average-of-two-averages centring method.
