-mixing CLT: , (Jones Thm 8)
ProvedMarkovChainCLT.clt_of_summable_sqrt_phicentral-limit-theoremmixing-processesprobability
Let be a centered, strictly stationary sequence of real random variables on a probability space, with partial sums . Suppose and the uniform mixing coefficients satisfy
Then the series
converges absolutely, and if then as .
The classical uniformly mixing CLT (Billingsley; Ibragimov–Linnik; the source's eq. (13)), the engine behind the uniformly ergodic chain CLT.
Formalization Note Sequences are indexed from , so and the past -algebras used by the mixing coefficients start at ; under strict stationarity this agrees with the source, which indexes from . Absolute convergence of the covariance series is expressed as unconditional summability, and the limit statement is weak convergence of the laws of .
Preamble
import Definitions.Def_MixingCoefficients
import Mathlib.MeasureTheory.Function.ConvergenceInDistribution
import Mathlib.Probability.Distributions.Gaussian.Real
open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory
/-- **Theorem 8** (Billingsley 1968; Ibragimov–Linnik 1971): a centered strictly
stationary square-integrable uniformly mixing sequence with `∑_n √φ(n) < ∞`
satisfies `σ² = E[Y₀²] + 2 ∑_{k≥1} E[Y₀ Y_k]` (absolutely convergent), and if
`σ² > 0` then `S_n / √n →d N(0, σ²)`. -/
Formal statement
theorem MarkovChainCLT.clt_of_summable_sqrt_phi {Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0) (hL2 : MemLp (Y 0) 2 P)
(hφ : Summable (fun n => Real.sqrt (phiMixingCoef P Y n))) :
Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) ∧
(0 < seqAsymptoticVariance P Y →
TendstoInDistribution
(fun (n : ℕ) ω => (Real.sqrt n)⁻¹ * ∑ i ∈ Finset.range n, Y i ω)
atTop (id : ℝ → ℝ) (fun _ => P)
(gaussianReal 0 (seqAsymptoticVariance P Y).toNNReal)) := by sorry
Source
G. L. Jones, "On the Markov Chain Central Limit Theorem", Probability Surveys 1 (2004) 299-320, arXiv math/0409112v2, Theorem 8, eq. (13) (arXiv v2 p. 12); originals: P. Billingsley, Convergence of Probability Measures (1968), Theorem 20.1; Ibragimov & Linnik (1971)