Part of the Maths & Statistics suite · 235 calculators

Exponential Smoothing Calculator

Smooth and forecast a series with exponentially decaying weights — the workhorse of short-term forecasting, with its error measures.

Each smoothed value is a blend of the newest observation and the previous smoothed value: S_t = αx_t + (1−α)S_(t−1).

Results update as you type
Results
Forecast for the next period
18.64635
Smoothed series
Mean absolute error
Root mean squared error
Mean absolute percentage error
Weight half-life
Equivalent moving-average window
Last observed value
Reviewed September 2026. Pure mathematics: the result does not depend on where you are. Terminology follows the Australian Curriculum (maths, brackets, decimal point).
No account required · Google Analytics off unless allowedCalculator arithmetic runs in your browserResults update as you type
All calculations run 100% in your browser. The calculator code does not submit your figures to GlobalCalc to obtain a result.
About exponential smoothing

How the exponential smoothing calculator works

Each smoothed value is a blend of the newest observation and the previous smoothed value: S_t = αx_t + (1−α)S_(t−1). Expanding it shows every past point still contributes, with weight decaying geometrically.

α controls the trade-off: near 1 the series tracks every wiggle, near 0 it barely moves. The next-period forecast from simple exponential smoothing is just the last smoothed value — it carries no trend, which is what Holt's method adds.

Formula: S_t = αx_t + (1 − α)S_(t−1)

Worked examples

InputsForecast for the next periodNote
α = 0.3 on a rising series18.64635the forecast lags the trend
α = 122the forecast is just the last value
α = 0.0512.505738very smooth, very slow

Frequently asked questions

What does α control?

How fast the smoothing forgets. Near 1 it tracks the latest point; near 0 it barely moves.

How do I choose α?

Minimise the forecast error on your own data — try a range and pick the lowest RMSE. Values between 0.1 and 0.3 are common for stable series.

How does it compare to a moving average?

A moving average drops points entirely once they leave the window; exponential smoothing keeps every point with a decaying weight. An α of 0.2 behaves roughly like a 9-period average.

Can it handle a trend?

Not on its own — simple exponential smoothing always forecasts a flat line and lags a trending series. Holt's method adds a trend term; Holt-Winters adds seasonality.

What is MAPE for?

Percentage error, which makes accuracy comparable across series of different scales. It breaks down when values approach zero.

Where these figures come from

Last checked: September 2026. Formulas are fixed by mathematics and do not change with tax years or regulations.