variance of partial sums, with a constant in the norm
ProvedMarkovChainCLT.integral_sq_sum_coord_leThe partial sums of a uniformly ergodic chain have variance , with an constant. If the -step kernel satisfies with , then for every bounded measurable with ,
The point is the constant. A trivial bound gives ; the martingale approximation gives where solves the Poisson equation. Both are useless for the truncation step of the Markov chain central limit theorem, where one writes with bounded and must show that the remainder contributes negligibly: there but does not. The bound above is exactly what is needed, since
Proof. Expanding the square turns the left-hand side into the double sum of covariances
Each term is a covariance at lag : conditioning on the past and using the Markov property, , and the geometric decay of the transition operator on mean-zero functions bounds this by . Finally, for each fixed the lag weights sum to at most regardless of — geometric decay in the lag means only of the mass survives — so the double sum is at most .
Note that no ergodic theorem is used: the entire estimate rests on the total-variation mixing rate, transported to by a Cauchy–Schwarz bound against total variation.
import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovIterKernel import Definitions.Def_TotalVariationDist import Mathlib.Probability.Kernel.Invariance import Mathlib.MeasureTheory.Integral.Bochner.Set open Filter Finset Function MeasurableSpace MeasureTheory ProbabilityTheory open MarkovChainCLT open scoped ENNReal NNReal Topology
theorem MarkovChainCLT.integral_sq_sum_coord_le {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hinv : Kernel.Invariant P π) (N : ℕ) (hN : 1 ≤ N) (ρ : ℝ) (hρ0 : 0 ≤ ρ)
(hρ : 4 * ρ ≤ 1 / 4) (hrate : ∀ x, tvDist (iterKernel P N x) π ≤ ρ)
(r : X → ℝ) (hr : Measurable r) (Br : ℝ) (hBr : ∀ x, |r x| ≤ Br)
(hmean : ∫ x, r x ∂π = 0) (n : ℕ) :
∫ ω, (∑ k ∈ Finset.range n, r (ω (k + 1))) ^ 2 ∂(chainMeasure P π)
≤ 4 * N * n * ∫ x, (r x) ^ 2 ∂π := by sorry