Bounded solution of the Poisson equation for a uniformly ergodic chain
ProvedMarkovChainCLT.poissonEquation_of_bounded_of_uniformlyErgodicThe Poisson equation for a bounded observable of a uniformly ergodic chain. If is uniformly ergodic with invariant law and is bounded and measurable, then there is a bounded measurable with
Why one wants it. The Poisson equation is the engine of the martingale approximation for Markov chains. Once solves it, the partial sums of the centred observable telescope into a martingale plus a bounded remainder,
and every limit theorem for the chain becomes a limit theorem for a martingale. Boundedness of is what makes the differences bounded, the remainder , and the whole argument elementary; solving the same equation in for a merely square-integrable is a genuinely harder problem.
Construction. Set and
Uniform ergodicity gives with , and testing against a function bounded by costs at most twice the total variation, so
The series therefore converges uniformly and absolutely, with a majorant that is geometric in and independent of ; is bounded, and measurable as a pointwise limit of its partial sums.
Verification. Applying one step of the chain shifts the index. Because (an easy induction from associativity of kernel composition), Fubini for the composed kernel gives , and the geometric majorant justifies exchanging the integral with the sum. Hence
which is the assertion. Note the identity holds at every , not merely -almost everywhere, because the convergence is uniform.
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovIterKernel import Definitions.Def_TotalVariationDist import Mathlib.MeasureTheory.Integral.Bochner.Set open MeasureTheory ProbabilityTheory Filter open MarkovChainCLT open scoped ENNReal NNReal Topology
theorem MarkovChainCLT.poissonEquation_of_bounded_of_uniformlyErgodic {X : Type*}
[MeasurableSpace X] (P : Kernel X X) [IsMarkovKernel P] (π : Measure X)
[IsProbabilityMeasure π] (huni : UniformlyErgodic P π) (φ : X → ℝ) (hφ : Measurable φ)
(B : ℝ) (hB : ∀ x, |φ x| ≤ B) :
∃ g : X → ℝ, Measurable g ∧ (∃ C : ℝ, ∀ x, |g x| ≤ C) ∧
∀ x, g x - ∫ y, g y ∂(P x) = φ x - ∫ y, φ y ∂π := by sorry