Definition
A distribution is heavy-tailed if its tails decay more slowly than any exponential, meaning extreme values occur with non-negligible probability relative to a normal baseline. In econometrics, the multivariate Student-t distribution — which nests the Cauchy (ν0=1) and converges to the normal as ν0→∞ — is the canonical heavy-tailed family for regression error modeling, motivated by financial returns, cross-sectional outliers, and instrument-variability settings.
Key Ideas
- The multivariate Student-t probability density function (pdf) for an n-vector u with zero mean, scalar dispersion σ2In, and degrees-of-freedom ν0 is: p(u∣ν0,σ)∝{ν0+u′u/σ2}−(n+ν0)/2. Marginal distributions of each ui are univariate Student-t with ν0 df.
- Elements of u are uncorrelated but not independent — the dependence is captured by a shared latent scale, unlike the multivariate normal where uncorrelated implies independent.
- The Student-t is a continuous scale mixture of normals: integrate out τ∼inverted-gamma (IG)(ν0/2,ν0σ2/2) to get u∼∫N(0,τ2In)dP(τ). This representation is the foundation for data-augmented Markov Chain Monte Carlo (MCMC).
- The class of scale mixtures of normals is broader than Student-t and includes Laplace, slash, and stable distributions with index <2 — all with heavier tails than the normal.
- Small ν0 produces heavy tails with high kurtosis and slowly decaying tail probabilities; as ν0 increases, the distribution approaches normality.
How It Works
OLS Robustness Under Student-t Errors (Zellner 1976)
For y=Xβ+u with u∼Student-t(ν0,0,σ2In):
- ordinary least squares (OLS) = maximum likelihood estimator (MLE): β^=(X′X)−1X′y maximizes the likelihood for any monotonically decreasing function of u′u, which the Student-t likelihood satisfies. So OLS remains the MLE regardless of ν0.
- OLS = minimum variance linear unbiased estimator (MVLUE): When ν0>2, the Gauss-Markov conditions hold (zero mean, finite variance, uncorrelated errors), so β^ is also the MVLUE.
- t/F statistics valid: Given the mixing variable τ, u∣τ∼N(0,τ2In), so t and F statistics are standard. The IG mixing pdf is proper and independent of t and F, preserving their marginal distributions.
- Scale inference changes: s2/σ2∼F(ν,ν0), not χ2(ν)/ν. Tests and intervals for σ2 require the F distribution; the departure from χ2 shrinks as ν0→∞.
- ν0 not jointly ML-estimable: No maximum exists over (β,σ2,ν0) simultaneously; ν0 must be treated as known or given a proper prior.
Bayesian Analysis with Diffuse Prior (Zellner 1976)
Under p(β,σ2)∝1/σ2:
- Marginal posterior for β: k-dimensional Student-t, identical in form to the normal-model posterior. β inference is invariant to ν0 — departures from normality do not affect regression coefficient conclusions.
- Marginal posterior for σ2/s2: F(ν0,ν). Converges to χ2(ν)/ν as ν0→∞.
- Natural conjugate prior: pF(σ2∣⋅)×pS(β∣σ2,⋅) — an F pdf for σ2 times a conditional multivariate Student-t for β; collapses to normal-gamma conjugate as ν0→∞.
Independent Student-t Errors (Geweke 1993)
Geweke (1993) treats the case where errors are independent (not jointly multivariate) Student-t, each with individual scale mixing variable λi∼IG(ν0/2,ν0/2). Augmenting the model with λ1,…,λn and ν0 yields a data-augmented Gibbs sampler with conjugate full conditionals, generalising the Zellner framework to allow estimation of ν0.
Why It Matters
- Financial returns exhibit excess kurtosis far above 3; assuming normality understates tail risk and distorts inference.
- Cross-sectional data (firms, individuals) frequently contain outlier observations that inflate OLS variance under normal assumptions.
- Regression robustness: Zellner (1976) shows precisely where heavy tails matter — β inference survives, σ2 inference does not — guiding practitioners on which adjustments are necessary.
- MCMC tractability: The scale-mixture representation converts an intractable non-normal likelihood into a sequence of conjugate conditional posteriors, enabling efficient Gibbs sampling by augmenting the model with latent scale variables τ (or individual λi).
- Motivating examples: (a) measuring instruments whose run-to-run variability τ is unknown but random; (b) stock return regressions where a common random standard deviation across observations is plausible; (c) cross-group regressions where groups share a common random error variance.
Open Questions
- Optimal specification or estimation of ν0 when it cannot be ML-estimated: assigning a uniform or log-uniform prior over ν0 and marginalizing remains the standard approach but introduces sensitivity.
- Extension to seemingly unrelated regression (SUR) with matrix-variate Student-t errors: Zellner (1976) conjectures similar results hold but leaves the proof to future work.
- Robustness of the β-invariance result when ν0 is itself estimated (posterior for β no longer integrates out ν0 cleanly).
Related