Uniform ergodicity uniform (-) mixing, with exponential rate (Jones Thm 2(iv))
DisprovedMarkovChainCLT.uniformly_ergodic_iff_phi_mixingLet be a Markov chain with transition kernel , Harris ergodic with invariant probability . Then the chain is uniformly ergodic if and only if its stationary version is uniformly mixing (); and if it is uniformly ergodic, the mixing is exponentially fast: there exist and with
This equivalence (Ibragimov–Linnik) identifies the strongest classical mixing condition with the strongest ergodicity condition, and feeds the uniformly ergodic CLT (Corollary 5).
Formalization Note "Harris ergodic" is encoded by its total-variation characterization: is invariant for and for every starting point (equivalent to the classical aperiodic, -irreducible, positive Harris recurrent definition; the "every " quantifier is exactly the Harris property). Convergence in distribution is weak convergence of laws, and is read as the point mass at , which absorbs the source's "" caveat. The -algebra of the state space is additionally assumed countably generated, the standard general-state-space setting of Meyn and Tweedie.
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory /-- **Theorem 2, part 4** (Ibragimov–Linnik 1971, pp. 367–368; Bradley 1986): a Harris ergodic chain is uniformly ergodic if and only if its stationary version is uniformly (φ-) mixing, in which case the φ-mixing is exponentially fast. -/
theorem MarkovChainCLT.uniformly_ergodic_iff_phi_mixing {X : Type*} [MeasurableSpace X]
[MeasurableSpace.CountablyGenerated X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hP : HarrisErgodic P π) :
(UniformlyErgodic P π ↔
Tendsto (fun n => phiMixingCoef (chainMeasure P π) (fun i ω => ω i) n)
atTop (𝓝 0)) ∧
(UniformlyErgodic P π → ∃ c θ : ℝ, 0 ≤ c ∧ 0 < θ ∧ ∀ n : ℕ, 1 ≤ n →
phiMixingCoef (chainMeasure P π) (fun i ω => ω i) n ≤ c * Real.exp (-θ * n)) := by sorry
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be a type with a countably generated σ-algebra (MeasurableSpace.CountablyGenerated: generated by some countable family of sets), a Markov kernel from to itself (each a probability measure), and a probability measure on , assumed Harris ergodic: is invariant for and for every , , with the -fold iterate ( = identity) and (real supremum, no factor ). Write for the bundle's φ-mixing coefficient of the coordinate process under the stationary path measure — the Ionescu–Tulcea measure on of the chain started from (, ): unfolded, is the real supremum (sSup) of the set of values over all , all events measurable for the σ-algebra generated by coordinates with , and all events measurable for the σ-algebra generated by coordinates (measure values converted to reals before dividing and subtracting; the set contains , e.g. = whole space, ; a real sSup of an empty or unbounded set would be by convention). Uniform ergodicity unfolds as: there exist reals and such that for every and every (a state-independent geometric bound; nothing claimed at ). The conclusion is the conjunction of two claims: (a) a genuine equivalence — is uniformly ergodic for if and only if as (the forward direction gives only the limit, with no rate); and (b) a one-way implication — if is uniformly ergodic for then there exist reals (zero allowed) and such that for every ( excluded; one pair for all such ). No converse of (b) is asserted: an exponential φ-mixing rate is not claimed to imply uniform ergodicity, except insofar as (a) already converts back into uniform ergodicity.
Confirmed by the mission captain (proposal self-audit).