Uniform ergodicity gives exponentially fast -mixing (forward half of Jones Thm 2(iv))
ProvedMarkovChainCLT.phiMixingCoef_le_exp_of_uniformlyErgodicLet be a Markov kernel with invariant probability . If the chain is uniformly ergodic — there are constants and with for all and all — then its stationary version is uniformly (-) mixing at an exponential rate: there exist and such that
What it establishes. This is the forward implication of the Ibragimov–Linnik equivalence between the strongest classical ergodicity condition and the strongest classical mixing condition, together with the quantitative rate. It is the direction that feeds the applications: the -mixing central limit theorem of Billingsley requires , and an exponential rate makes that series converge with room to spare — which is why the uniformly ergodic CLT (Tierney) needs no moment condition beyond square integrability.
Where the content sits. All of the probabilistic work is in the bound , which requires disintegrating a "past future" probability over the past, identifying the conditional law of the future as a chain restarted from , and bounding an average of -valued integrals by a total-variation distance — all uniformly in the split point . Given that bound, the present statement is the observation that a geometric rate is an exponential rate.
The one subtlety. Writing as requires , which is undefined at — and is permitted by the definition of uniform ergodicity (it describes a chain that reaches stationarity exactly after one step). The fix is to replace by : still strictly less than , now bounded away from , and since . Then works uniformly, at the cost of a rate that is no worse than the true one.
Proof. Unpack uniform ergodicity to get . Set and , so because , and . For each and each , . Applying the bound of by a uniform total-variation rate with gives the claim with .
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MixingCoefficients open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory open MarkovChainCLT
theorem MarkovChainCLT.phiMixingCoef_le_exp_of_uniformlyErgodic {X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P] (π : Measure X) [IsProbabilityMeasure π]
(hinv : Kernel.Invariant P π) (huni : UniformlyErgodic P π) :
∃ c θ : ℝ, 0 ≤ c ∧ 0 < θ ∧ ∀ n : ℕ, 1 ≤ n →
phiMixingCoef (chainMeasure P π) (fun i (ω : ℕ → X) => ω i) n
≤ c * Real.exp (-θ * n) := by sorry