Distributional limit for a bounded strongly mixing stationary sequence
ProvedMarkovChainCLT.tendstoInDistribution_of_bounded_of_summable_alphaLet be a measurable, centered, strictly stationary real-valued sequence on a probability space , uniformly bounded by a constant almost surely at every time, with summable strong mixing coefficients . Assume also that the positive-lag autocovariance series is absolutely convergent, and define
If , then the normalized partial sums obey
This isolates the blocking and distributional-limit component of the bounded case of the Ibragimov–Linnik central limit theorem (Jones, Theorem 5, condition 1), after covariance convergence has been established separately.
Formalization Note Convergence is weak convergence of the laws under the common probability measure ; the Gaussian variance is represented by the nonnegative-real coercion of , which equals under the positivity hypothesis.
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
/-- The blocking/limit component of the Ibragimov–Linnik bounded-case CLT, after
covariance summability has been isolated. -/
theorem MarkovChainCLT.tendstoInDistribution_of_bounded_of_summable_alpha
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(B : ℝ) (hB : ∀ n, ∀ᵐ ω ∂P, |Y n ω| < B)
(hα : Summable (fun n => alphaMixingCoef P Y n))
(hsum : Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P))
(hvar : 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