Time Series Analysis Exponential Smoothing Methods 1 — Questions and Answers
Question 1: What is the key idea behind simple exponential smoothing (SES)?
- Recent observations receive more weight than older ones via a decay parameter α (Correct answer)
- All observations are weighted equally
- Only the most recent observation is used
- Weights increase linearly with time
Correct answer: Recent observations receive more weight than older ones via a decay parameter α
SES applies geometrically decreasing weights controlled by α, so recent data has the most influence while historical data fades exponentially.
Question 2: In simple exponential smoothing, what does a smoothing parameter α close to 1 indicate?
- The forecast reacts quickly to recent changes (Correct answer)
- The forecast is very stable and slow to update
- Past observations are weighted heavily
- The forecast is identical to the mean
Correct answer: The forecast reacts quickly to recent changes
An α near 1 means almost all weight is on the most recent observation, making the forecast highly responsive to the latest data point.
Question 3: What does Holt's linear trend method add compared to simple exponential smoothing?
- A second smoothing equation to track the trend component (Correct answer)
- A third equation for seasonality
- Automatic outlier detection
- A multiplicative error term
Correct answer: A second smoothing equation to track the trend component
Holt's method introduces a separate trend equation with its own smoothing parameter β, allowing the model to follow linear trends.
Question 4: What is the Holt-Winters method designed to handle?
- Time series with both trend and seasonality (Correct answer)
- Non-seasonal stationary series only
- Series with no trend
- Series with only cyclical components
Correct answer: Time series with both trend and seasonality
Holt-Winters extends Holt's method with a third equation for the seasonal component, handling series that have both trend and repeating seasonal patterns.
Question 5: What is the difference between additive and multiplicative Holt-Winters models?
- Additive seasonal terms are constant in magnitude; multiplicative terms scale with the level (Correct answer)
- Additive uses one parameter; multiplicative uses two
- They produce identical forecasts
- Additive is for weekly data; multiplicative is for monthly data
Correct answer: Additive seasonal terms are constant in magnitude; multiplicative terms scale with the level
The additive model adds the seasonal component to the level, while the multiplicative model multiplies, appropriate when seasonal fluctuations grow proportionally.
Question 6: What is the ETS framework in time series modeling?
- Error, Trend, Seasonality — a unified state-space framework for exponential smoothing (Correct answer)
- Estimated Time Series method
- Exponential Trend Smoothing only
- Error Testing System
Correct answer: Error, Trend, Seasonality — a unified state-space framework for exponential smoothing
ETS provides a state-space formulation of exponential smoothing, enabling model selection via AIC and proper prediction interval computation.
What is the key idea behind simple exponential smoothing (SES)?