Ibragimov–Linnik CLT, moment case: , (Jones Thm 5(ii))
ProvedMarkovChainCLT.clt_of_moment_of_alpha_pow_summablecentral-limit-theoremmixing-processesprobability
Let be a centered, strictly stationary sequence of real random variables on a probability space, with partial sums . Suppose there is with and
Then the series
converges absolutely, and if then as .
This is the moment case of the Ibragimov–Linnik central limit theorem (the source's eq. (10)), the engine behind the Chan–Geyer and polynomial-moment chain CLTs.
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
import Mathlib.Analysis.SpecialFunctions.Pow.Real
open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory
/-- **Theorem 5, condition 2** (Ibragimov 1962; Ibragimov–Linnik 1971): a centered
strictly stationary strongly mixing sequence with `E|Y₀|^{2+δ} < ∞` and
`∑_n α(n)^{δ/(2+δ)} < ∞` 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_moment_of_alpha_pow_summable {Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(δ : ℝ) (hδ : 0 < δ) (hmom : Integrable (fun ω => |Y 0 ω| ^ (2 + δ)) P)
(hα : Summable (fun n => alphaMixingCoef P Y n ^ (δ / (2 + δ)))) :
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 5, condition 2, eq. (10) (arXiv v2 p. 9); originals: I. A. Ibragimov (1962); Ibragimov & Linnik (1971), Theorem 18.5.3