Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Strict contraction of a submultiplicative sequence implies exponential decay

Proved
MarkovChainCLT.exponential_decay_of_submultiplicative

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

analysismarkov-chainmixingprobability

Let (rn)n≥0(r_n)_{n\ge 0}(rn​)n≥0​ be a sequence of real numbers satisfying 0≤rn≤10\le r_n\le 10≤rn​≤1 and the submultiplicative inequality rm+n≤rmrnr_{m+n}\le r_m r_nrm+n​≤rm​rn​. Suppose there are an integer N≥1N\ge 1N≥1 and a number q∈(0,1)q\in(0,1)q∈(0,1) such that rN≤qr_N\le qrN​≤q. Then there exist constants c≥0c\ge 0c≥0 and θ>0\theta>0θ>0 for which

rn≤ce−θn(n≥1).r_n\le c e^{-\theta n}\qquad(n\ge 1).rn​≤ce−θn(n≥1).

This isolates the deterministic analytic step that converts a strict maximal-correlation contraction at one lag into a quantitative exponential mixing rate. It is reusable for mixing coefficients and operator norms once their submultiplicativity has been established.

Preamble
import Mathlib
Formal statement
namespace MarkovChainCLT

theorem exponential_decay_of_submultiplicative
    (r : ℕ → ℝ)
    (hr_nonneg : ∀ n, 0 ≤ r n)
    (hr_one : ∀ n, r n ≤ 1)
    (hr_mul : ∀ m n, r (m + n) ≤ r m * r n)
    (N : ℕ) (hN : 1 ≤ N)
    (q : ℝ) (hq_pos : 0 < q) (hq_lt : q < 1)
    (hrN : r N ≤ q) :
    ∃ c θ : ℝ, 0 ≤ c ∧ 0 < θ ∧
      ∀ n : ℕ, 1 ≤ n → r n ≤ c * Real.exp (-θ * n) := by sorry

end MarkovChainCLT
Source
Richard C. Bradley, Basic Properties of Strong Mixing Conditions: A Survey and Some Open Questions, Probability Surveys 2 (2005), pp. 118–119, Theorem 3.3(1), https://arxiv.org/abs/math/0511078. This theorem formalizes the submultiplicative real-sequence step underlying the stated exponential rho-mixing conclusion.

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