The Markov property at an arbitrary lag
ProvedMarkovChainCLT.condExp_coord_addThe Markov property at an arbitrary lag. For a bounded measurable and any ,
where . This holds for every initial distribution.
Why the lagged form is needed. The one-step version is what makes the Poisson-equation differences a martingale. The lagged version is what computes covariances along the chain: for bounded and ,
under the stationary chain. Combined with the contraction of a uniformly ergodic chain, this gives absolutely summable covariances and hence the variance bound
with a constant depending only on — the estimate that controls the truncation error when passing from bounded to square-integrable observables in the Markov chain central limit theorem.
Proof. Induction on . For the kernel is the Dirac kernel, so the left side is , which is already measurable with respect to the conditioning -algebra. For the inductive step, condition first on the larger -algebra : by the tower property,
using the one-step Markov property. Since is again bounded and measurable, the induction hypothesis applies to it and yields , which is because — Fubini for a composed kernel.
import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MarkovIterKernel import Mathlib.MeasureTheory.Function.ConditionalExpectation.Real import Mathlib.MeasureTheory.Integral.Bochner.Set open Filter Finset Function MeasurableEquiv MeasurableSpace MeasureTheory Preorder ProbabilityTheory open MarkovChainCLT open scoped ENNReal NNReal Topology
theorem MarkovChainCLT.condExp_coord_add {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (lam : Measure X) [IsProbabilityMeasure lam]
(h : X → ℝ) (hh : Measurable h) (B : ℝ) (hB : ∀ x, |h x| ≤ B) (m d : ℕ) :
(fun ω : ℕ → X => ∫ y, h y ∂(iterKernel P d (ω m)))
=ᵐ[chainMeasure P lam] (chainMeasure P lam)[fun ω : ℕ → X => h (ω (m + d)) |
MeasurableSpace.comap (frestrictLe (π := fun _ : ℕ => X) m) inferInstance] := by sorry