State Space Models
A state-space model separates the hidden process from the noisy measurements. Instead of modeling only , it introduces a latent state vector that evolves over time and emits observations. The linear Gaussian form is
with process noise and observation noise . The state can contain a level, slope, seasonal positions, regression coefficients, or other quantities that should evolve more smoothly than raw observations.
This representation is useful because forecasting, filtering, and uncertainty all become operations on the latent state. The prediction step propagates forward through the transition equation. The update step adjusts the predicted state after seeing . Kalman filters are the standard recursive algorithm for that update in linear Gaussian models.
Many familiar methods can be viewed through this lens. Exponential smoothing has innovations state-space forms where forecast errors update level, trend, and seasonality. Some ARIMA implementations are estimated in state-space form. Structural time-series models add interpretable components such as local linear trend, seasonal states, and regressors.
The main risk is plausible latent-state storytelling. A smooth estimated level does not prove the model is correct. Check one-step-ahead innovations, state jumps after outliers, interval coverage, and segment-level errors. If the observation process changes, the latent state can adapt in a way that looks reasonable while masking a failure that should trigger forecast monitoring.
Connections
State-space models are the framework behind kalman filters, many ETS models in exponential smoothing, and some ARIMA estimators. Their uncertainty estimates connect directly to prediction intervals and production monitoring.
References
Nav