Lemma 4.12 -- submultiplicativity of
ProvedMarkovMixing.distPairs_submultiplicativeLet be any stochastic matrix on a finite state space (nonnegative entries, rows summing to one), write for the row of the -th matrix power — the distribution at time of the chain started at — and let
be the worst pairwise total variation distance between two copies of the chain at time .
The theorem (Lemma 4.12 of Levin–Peres–Wilmer) asserts that is submultiplicative:
No irreducibility or aperiodicity is needed. Combined with the comparison to the distance to stationarity, submultiplicativity is what makes distances decay geometrically past the mixing time, and hence what makes the mixing time a meaningful single parameter of a chain.
import Definitions.Def_mm_mixing
namespace MarkovMixing
/-- **Lemma 4.12** (LPW): `d̄` is submultiplicative:
`d̄(s + t) ≤ d̄(s) · d̄(t)`. -/
theorem distPairs_submultiplicative {V : Type*} [Fintype V] [DecidableEq V]
[Nonempty V] (P : Matrix V V ℝ) (hP : IsStochastic P) (s t : ℕ) :
distPairs P (s + t) ≤ distPairs P s * distPairs P t := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be a finite, nonempty type with decidable equality, let be a real matrix assumed stochastic (every entry satisfies , and every row sums to : ), and let and be arbitrary natural numbers — both may be , in which case the corresponding matrix power is the identity matrix. Define, using the custom total-variation quantity
(a supremum over all subsets of the finite type , carrying no factor ), the pairwise-row quantity
where denotes the function , the -th row of the -th power of ; the pairs range over all of , including the diagonal pairs . All suprema are taken in with the convention that an empty or unbounded supremum equals (here the index sets are finite and nonempty since is nonempty, so they are genuine maxima). The theorem asserts the single non-strict inequality
for every such and , assuming only that is stochastic — no stationary distribution, irreducibility, or aperiodicity is assumed, and the right-hand side is a product (not a sum) of the two quantities.
Confirmed by the mission captain (proposal self-audit).