Lemma 6.13 -- total variation is bounded by separation
ProvedMarkovMixing.tv_le_sepLet be a Markov chain on a finite state space with strictly positive stationary distribution . Write for the distribution at time started at , for the total variation distance, and
for the separation distance at time from the starting state .
The theorem (Lemma 6.13 of Levin–Peres–Wilmer) asserts that separation dominates total variation: for every starting state and every time ,
Consequently any bound on the separation distance — for instance one obtained from a strong stationary time — is automatically a bound on the total variation distance to stationarity.
import Definitions.Def_mm_stopping
namespace MarkovMixing
/-- **Lemma 6.13** (LPW): total variation distance to stationarity is bounded
by the separation distance: `‖P^t(x,·) − π‖_TV ≤ s_x(t)`. -/
theorem tv_le_sep {V : Type*} [Fintype V] [DecidableEq V]
(P : Matrix V V ℝ) (hP : IsStochastic P)
(π : V → ℝ) (hπ : IsStationary P π) (hpos : ∀ y : V, 0 < π y)
(x : V) (t : ℕ) :
tvDist (rowDist P t x) π ≤ sepDist P π x t := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be a finite type (possibly empty) with decidable equality, and let be a matrix of real numbers assumed to be stochastic: for all , and for every row . Let be assumed stationary for , meaning for all , , and as a row vector; assume additionally the strict positivity for every . Then for every state and every natural number (including , where is the identity matrix), the theorem asserts the inequality
The left-hand side is the quantity this development calls the total-variation distance between the time- distribution started from (the row of the -th matrix power) and : the supremum, over all finite subsets of (including , which contributes , so this supremum is always ), of the absolute difference of the two masses of — note it is the supremum of an absolute value, not half of an norm. The right-hand side is the quantity this development calls the separation distance at time from : the supremum over all states of ; under the positivity hypothesis no division by zero occurs in it. Both sides are suprema of real-valued families indexed by finite ranges; in the degenerate case where is empty, both suprema are over empty families and take the junk value (and the hypotheses and row sums are then unsatisfiable, making the statement vacuous for empty ). No irreducibility, aperiodicity, or reversibility assumption appears in the statement.
Confirmed by the mission captain (proposal self-audit).