220. A-N-N

Simple exponential smoothing

ETS(𝐴,𝑁,𝑁)𝑥𝑡=𝑙𝑡1+𝜀𝑡𝑙𝑡=𝑙𝑡1+𝛼𝜀𝑡𝑥̂𝑡+|𝑡=𝑙𝑡
Example: ETS(𝐴,𝑁,𝑁)

Given

  • Smoothing parameter: 𝛼=0.5
  • Initial level: 𝑙0=12
  • Data:
𝑡12345678910111213141516
x𝑡121081114129131614111518161317

Step 1 — formula

Observation:

𝑥𝑡=𝑙𝑡1+𝜀𝑡

Innovation (rearrange):

𝜀𝑡=𝑥𝑡𝑙𝑡1

State update:

𝑙𝑡=𝑙𝑡1+𝛼𝜀𝑡

One-step-ahead forecast:

𝑥̂𝑡|𝑡1=𝑙𝑡1

Step 2 — apply at 𝑡=1

Use 𝑙0=12 and 𝑥1=12:

𝑥̂1|0=𝑙0=12𝜀1=𝑥1𝑙0=1212=0𝑙1=𝑙0+𝛼𝜀1=12+0.50=12

Step 3 — iterate

Values rounded to 4 decimal places; arithmetic performed at full precision.

𝑡𝑥𝑡𝑥̂𝑡|𝑡1=𝑙𝑡1𝜀𝑡=𝑥𝑡𝑙𝑡1𝑙𝑡=𝑙𝑡1+0.5𝜀𝑡
11212012
21012211
381139.5
4119.51.510.25
51410.253.7512.125
61212.1250.12512.0625
7912.06253.062510.5313
81310.53132.468811.7656
91611.76564.234413.8828
101413.88280.117213.9414
111113.94142.941412.4707
121512.47072.529313.7354
131813.73544.264615.8677
141615.86770.132315.9338
151315.93382.933814.4669
161714.46692.533115.7335

Forecast for any future 𝑡>16: 𝑥̂𝑡|16=𝑙16=15.7335 (flat — SES has no trend).