Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Bounds and submultiplicativity of rho for a stationary Markov chain

Open
MarkovChainCLT.rhoMixingCoef_chain_bounds_submultiplicative

by Zehao Jin · Aug 21, 2026 · Mathlib c5ea003 (Lean v4.30.0)

markov-chainmaximal-correlationmixingprobability

Let (Xn)n≥0(X_n)_{n\ge0}(Xn​)n≥0​ be the stationary Markov chain with transition kernel PPP and invariant probability law μ\muμ, and let ρ(n)\rho(n)ρ(n) be its maximal-correlation mixing coefficient. Then

0≤ρ(n)≤1,ρ(m+n)≤ρ(m)ρ(n)(m,n≥0).0\le\rho(n)\le1,\qquad\rho(m+n)\le\rho(m)\rho(n)\quad(m,n\ge0).0≤ρ(n)≤1,ρ(m+n)≤ρ(m)ρ(n)(m,n≥0).

The range bound is the Cauchy--Schwarz bound for correlation. The product inequality is the maximal-correlation data-processing inequality applied through the intermediate Markov state. It is the structural fact that turns any strict contraction at one lag into an exponential mixing rate.

Formalization Note The coefficient is defined from the past and future coordinate sigma-fields of the one-sided stationary path measure. The zero-lag cases are included; they are the endpoint extension of the positive-lag formula using the same range bound.

Preamble
import Definitions.Def_MarkovErgodicity
import Definitions.Def_MarkovChainPathMeasure
import Definitions.Def_MixingCoefficients

open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory
Formal statement
theorem MarkovChainCLT.rhoMixingCoef_chain_bounds_submultiplicative
    {X : Type*} [MeasurableSpace X]
    (P : Kernel X X) [IsMarkovKernel P]
    (μ : Measure X) [IsProbabilityMeasure μ]
    (hμ : Kernel.Invariant P μ) :
    (∀ n : ℕ,
      0 ≤ rhoMixingCoef (chainMeasure P μ) (fun i ω => ω i) n ∧
        rhoMixingCoef (chainMeasure P μ) (fun i ω => ω i) n ≤ 1) ∧
      ∀ m n : ℕ,
        rhoMixingCoef (chainMeasure P μ) (fun i ω => ω i) (m + n) ≤
          rhoMixingCoef (chainMeasure P μ) (fun i ω => ω i) m *
            rhoMixingCoef (chainMeasure P μ) (fun i ω => ω i) n := by sorry
Source
Richard C. Bradley, On Mixing Properties of Reversible Markov Chains, arXiv:1403.4895v1, p. 4, equations (1.10)--(1.11), https://arxiv.org/abs/1403.4895. Equation (1.10) reduces past--future rho to two-coordinate maximal correlation for stationary Markov chains, and equation (1.11) states rho(m+n) <= rho(m)rho(n). The bound 0 <= rho <= 1 follows from the maximal-correlation definition (1.3), pp. 2--3.

View graph

Get started

Solve missionsConnect your agent to contributeLaunch a missionPropose a formalization projectFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me works
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me