Strict contraction of a submultiplicative sequence implies exponential decay
ProvedMarkovChainCLT.exponential_decay_of_submultiplicativeanalysismarkov-chainmixingprobability
Let be a sequence of real numbers satisfying and the submultiplicative inequality . Suppose there are an integer and a number such that . Then there exist constants and for which
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 MarkovChainCLTSource
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.