Definition
Bayesian multiperiod prediction is the formation of k-step-ahead forecasts from autoregressive (AR) models by integrating over the posterior distribution of the parameters, rather than substituting a point estimate and iterating. The key result (Chow 1973) is that the optimal Bayesian predictor uses E[Ak∣data] — the expected kth power of the coefficient matrix under the posterior — which is not equal to (E[A∣data])k, the kth power of the posterior mean.
Key Ideas
- The classical k-step predictor substitutes A^ and iterates: y^t+k=A^kyt. This is suboptimal because it treats A as known.
- The Bayesian optimal predictor (minimum mean-squared-error) is E[yt+k∣y1,…,yt], which requires integrating over p(A∣data).
- For k≥2: E[Ak∣data]=(E[A∣data])k. The gap is largest in small samples and at long horizons; it vanishes as T→∞ at rate O(T−1).
- Under a normal-gamma (univariate) or normal-Wishart (multivariate) prior, E[Ak∣data] is analytically tractable via moments of the (matrix-)t posterior.
How It Works
Univariate AR(1) (Chow 1973, §2)
Let yt=Ayt−1+εt with εt∼N(0,σ2) and a normal-gamma prior on (A,σ2). The posterior p(A∣y1,…,yT) is a univariate t-distribution with posterior mean Aˉ and posterior variance v.
The optimal k-step predictor is:
y^T+k∣T=E[Ak∣data]⋅yT
- k=1: E[A∣data]=Aˉ — Bayesian and classical predictors coincide.
- k=2: E[A2∣data]=Aˉ2+v — the Bayesian predictor exceeds the classical Aˉ2yT by v⋅yT.
- General k: E[Ak] depends on all even moments of the posterior; in the t case these have closed forms.
Companion-Form VAR (Chow 1973, §3)
Write the vector autoregression (VAR) in companion form: zt=Mzt−1+ut where M is the nk×nk companion matrix. The k-step predictor is:
z^T+k∣T=E[Mk∣data]⋅zT
Under a normal-Wishart prior, the posterior of M is matrix-t, and E[Mk∣data] is computable from its moments. The result generalizes: the matrix analogue of the univariate E[A2]=E[A]2+Var(A) includes cross-moment terms from all entries of M.
Diffuse Prior Limit
Under a diffuse prior and large T, the posterior of M concentrates around the ordinary least squares (OLS) estimate M^, and E[Mk∣data]→M^k. Classical and Bayesian predictors converge. The correction for parameter uncertainty is O(T−1).
Why It Matters
- Provides the theoretical justification for why informative priors improve multiperiod forecast accuracy: tighter posteriors reduce the wedge between E[Ak] and A^k.
- Explains why Bayesian VAR (BVAR) improvements are larger at longer horizons: the E[Ak]−A^k gap grows with k but shrinks when the posterior is tight.
- Foundational for the Bayesian VAR forecasting tradition: Litterman (1986b) operationalized Bayesian prediction via the Minnesota Prior; Chow (1973) established why it is the theoretically correct approach.
- In practice, E[Mk] is computed via Markov chain Monte Carlo (MCMC) integration over posterior draws rather than analytically — the theoretical result motivates the practice.
Frequentist Baseline: Yamamoto (1981)
Yamamoto (1981) establishes the frequentist counterpart to Chow's result for multivariate AutoRegressive Moving Average (ARMA(p,q)) models. He derives the closed-form Minimum Mean-Squared Error (MMSE) predictor via a companion-form recursion: denoting the AR companion matrix A (of dimension mp×mp) and the MA companion matrix B (mq×mq), the h-step prediction weight for the k-th past innovation is
πh,k=H′Ah−1Bk(A−B)H
with compact predictor x^n,h=H′Ah−1PXn. The key Theorem 2 result shows that when parameters are estimated from n observations, the asymptotic Prediction Mean Squared Error (PMSE) is
AMSE(x^n,h)=Ωh+n−1E(Yn′Uh′VUhYn)
where AMSE denotes the asymptotic PMSE, V is the inverse Fisher information, and Uh is the gradient of the prediction weights. This O(n−1) inflation term is the frequentist analogue of the Bayesian gap E[Mk∣data]−M^k: both grow with horizon h and shrink with sample size n. In large samples the two corrections are asymptotically equivalent. The Yamamoto result shows that the multiperiod PMSE inflation is not a prior-choice artefact but a fundamental statistical phenomenon under any asymptotically efficient estimator.
Open Questions
- Computing E[Mk] analytically is expensive for large n and k; MCMC posterior integration is the standard workaround.
- Appropriate loss function: squared-error loss motivates the posterior mean predictor, but other losses may favor different predictors.
Related