An Poisson solution under polynomial drift
ProvedMarkovChainCLT.poissonEquation_ae_of_polynomialDriftLet be a Harris ergodic Markov kernel on a countably generated measurable state space, with invariant probability measure . Let and be measurable, let be a measurable small set, and assume is integrable under for every . Suppose , , and satisfy
For a real satisfying , assume
Then there is a measurable solution of the centered Poisson equation such that
Here and .
This isolates the Poisson-equation ingredient of the polynomial-drift central limit theorem. Its conclusion also supports martingale approximations and bounds for additive functionals, independently of a central limit theorem.
Formalization Note. Harris ergodicity and smallness use the existing mission definitions. The Poisson identity is required only almost everywhere under the invariant measure. The case forces and is included.
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovDriftMinorization import Definitions.Def_MarkovChainPathMeasure open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.poissonEquation_ae_of_polynomialDrift {X : Type*} [MeasurableSpace X]
[MeasurableSpace.CountablyGenerated X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) (f : X → ℝ) (hf : Measurable f)
(V : X → ℝ) (hV : Measurable V) (hV1 : ∀ x, 1 ≤ V x)
(C : Set X) (hC : MeasurableSet C) (hsmall : IsSmallSet P C)
(d b τ : ℝ) (hd : 0 < d) (hτ0 : 0 ≤ τ) (hτ1 : τ < 1)
(hdrift : PolyDriftCondition P V d b τ C)
(η : ℝ) (hη0 : 1 - τ ≤ η) (hη1 : η ≤ 1)
(hVint : Integrable (fun x => V x ^ (2 * η)) π)
(hfV : ∀ x, |f x| ≤ V x ^ (τ + η - 1)) :
∃ g : X → ℝ, Measurable g ∧ MemLp g 2 π ∧
Measurable (fun x => ∫ y, g y ∂(P x)) ∧
MemLp (fun x => ∫ y, g y ∂(P x)) 2 π ∧
∀ᵐ x ∂π, g x - ∫ y, g y ∂(P x) = f x - ∫ x, f x ∂π := by sorry