Uniform fourth moment of the CLT-scaled sample average (bounded observable)
ProvedMarkovChainCLT.integral_pow_four_scaled_sampleAvg_leA uniform fourth-moment bound for the CLT-scaled sample average of a bounded observable.
Let be a Markov kernel with invariant probability , uniformly ergodic, and let be measurable and bounded. Write for the central-limit-scaled sample average along the stationary chain. Then is fourth-power integrable for every , and
This is the fourth-moment companion of the platform's integral_sq_scaled_sampleAvg_le, which bounds uniformly. Equivalently, in terms of the unnormalised partial sums , the assertion is the classical for a bounded observable of a geometrically mixing stationary chain.
Why it is wanted. A uniform second-moment bound alone does not make uniformly integrable, and uniform integrability is exactly what is missing when one wants to conclude that the Gaussian limit in the Markov chain central limit theorem carries the full asymptotic variance rather than only part of it. With this bound the conclusion is immediate: for one has , so uniformly in , and letting and then pins the limit variance.
Two standard routes. Either directly, expanding and using the geometric decay of the mixing coefficients to show that only the "paired" index patterns contribute; or through the martingale approximation, where uniform ergodicity solves the Poisson equation with a bounded solution (poissonEquation_of_bounded_of_uniformlyErgodic), so that is a martingale with bounded increments up to an boundary term, and a martingale with increments bounded by satisfies by the usual expansion in which every term with a unique maximal index vanishes.
Proving this closes the identification of the limit variance for bounded observables, and with it — through the truncation reduction already on the platform — the Markov chain central limit theorem with identified asymptotic variance, the delta method for chain statistics, and Theorem 9 of arXiv:2407.19618.
import Definitions.Def_MarkovAsymptoticVariance import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure open MeasureTheory ProbabilityTheory Filter open scoped NNReal ENNReal Topology
theorem MarkovChainCLT.integral_pow_four_scaled_sampleAvg_le {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hinv : Kernel.Invariant P π) (huni : MarkovChainCLT.UniformlyErgodic P π)
(f : X → ℝ) (hf : Measurable f) (B : ℝ) (hB : ∀ x, |f x| ≤ B) :
∃ C : ℝ, 0 ≤ C ∧ ∀ n : ℕ,
Integrable (fun ω : ℕ → X =>
(Real.sqrt n * (MarkovChainCLT.sampleAvg f n ω - ∫ x, f x ∂π)) ^ 4)
(MarkovChainCLT.chainMeasure P π)
∧ ∫ ω, (Real.sqrt n * (MarkovChainCLT.sampleAvg f n ω - ∫ x, f x ∂π)) ^ 4
∂(MarkovChainCLT.chainMeasure P π) ≤ C := by sorry