-mixing CLT: , (Jones Thm 7)
ProvedMarkovChainCLT.clt_of_summable_rhocentral-limit-theoremmixing-processesprobability
Let be a centered, strictly stationary sequence of real random variables on a probability space, with partial sums . Suppose and the -mixing coefficients are summable,
Then the series
converges absolutely, and if then as .
For -mixing sequences (Ibragimov 1975; the source's eq. (12)) a bare second moment suffices for the CLT — the key to the reversible-chain corollary.
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 7** (Ibragimov 1975): a centered strictly stationary
square-integrable ρ-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_rho {Ω : 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 => rhoMixingCoef 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 7, eq. (12) (arXiv v2 p. 12); original: I. A. Ibragimov, A note on the central limit theorem for dependent random variables, Theory Probab. Appl. 20 (1975)