Distributional limit for a summable- stationary sequence
ProvedMarkovChainCLT.tendstoInDistribution_of_summable_rhocentral-limit-theoremmixing-processesprobability
Let be a measurable, centered, strictly stationary real-valued sequence on a probability space, with and summable maximal-correlation coefficients. Assume also that its positive-lag autocovariance series is absolutely convergent. Define
If , then the normalized partial sums obey
This isolates the blocking and distributional-limit component of the summable- central limit theorem after covariance convergence has been established.
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.
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 /-- The blocking/limit component of the summable-rho CLT, after covariance summability has been isolated. -/
Formal statement
theorem MarkovChainCLT.tendstoInDistribution_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))
(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 sorrySource
G. L. Jones, "On the Markov Chain Central Limit Theorem", Probability Surveys 1 (2004) 299–320, https://arxiv.org/abs/math/0409112, Theorem 7 and eq. (12), arXiv v2 p. 12; original result: I. A. Ibragimov, Theory of Probability and Its Applications 20 (1975).