Lemma 4.11 -- comparing and
ProvedMarkovMixing.dist_le_distPairsLet be the transition matrix of a Markov chain on a finite state space with stationary distribution (that is, for all ), and write for the distribution of the chain at time started at , and for the total variation distance. Chapter 4 of Levin–Peres–Wilmer measures convergence by two quantities: the worst-case distance to stationarity and the worst pairwise distance,
The theorem (Lemma 4.11) asserts that for every time these are equivalent up to a factor of two:
The left inequality holds because is an average of the rows ; the right is the triangle inequality through . The point of is that, unlike , it is submultiplicative — the subject of the companion lemma.
import Definitions.Def_mm_mixing
namespace MarkovMixing
/-- **Lemma 4.11** (LPW): `d(t) ≤ d̄(t) ≤ 2 d(t)`. -/
theorem dist_le_distPairs {V : Type*} [Fintype V] [DecidableEq V] [Nonempty V]
(P : Matrix V V ℝ) (hP : IsStochastic P)
(π : V → ℝ) (hπ : IsStationary P π) (t : ℕ) :
distStationary P π t ≤ distPairs P t ∧
distPairs P t ≤ 2 * distStationary 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 : ), let be assumed stationary for — meaning is a probability distribution ( and ) and the row-vector–matrix product satisfies , i.e. for every — and let be an arbitrary natural number (including , where is the identity matrix and each row is a point mass). The statement uses the custom total-variation quantity
(a supremum over all subsets of the finite type , with no factor ), and the two derived quantities
where denotes the function , the -th row of the -th matrix power of . All suprema are taken in (with the convention that an empty or unbounded supremum equals ; here the index sets are nonempty and finite over subsets/points of , so under the hypotheses they are genuine maxima). The theorem asserts the conjunction of two non-strict inequalities:
Both inequalities are claimed for every single , under the stated stochasticity and stationarity hypotheses; nothing further (irreducibility, aperiodicity, etc.) is assumed.
Confirmed by the mission captain (proposal self-audit).