Lemma 7.9 -- projections do not increase total variation
ProvedMarkovMixing.projection_lower_boundLet and be probability distributions on a finite state space , let be any map to a finite set , and write for the pushforward of along — the law of the statistic, . Let denote the total variation distance (on or on as appropriate).
The theorem (Lemma 7.9 of Levin–Peres–Wilmer) asserts that projecting can only lose information:
Consequently any lower bound on the distance between the projected laws — for instance one produced by the distinguishing-statistic inequality applied on — is automatically a lower bound on the distance between the original distributions. This is the step that turns observable-level separations into total-variation lower bounds for chains.
import Definitions.Def_mm_lower
namespace MarkovMixing
/-- **Lemma 7.9** (LPW): projecting by a statistic `f : Ω → Λ` can only
decrease total variation distance:
`‖μ f⁻¹ − ν f⁻¹‖_TV ≤ ‖μ − ν‖_TV`. -/
theorem projection_lower_bound {V : Type*} [Fintype V] [DecidableEq V]
{Λ : Type*} [Fintype Λ] [DecidableEq Λ]
(μ ν : V → ℝ) (hμ : IsDist μ) (hν : IsDist ν) (f : V → Λ) :
tvDist (pushforward μ f) (pushforward ν f) ≤ tvDist μ ν := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let and both be finite types with decidable equality, and let be two functions that are each assumed to be probability distributions in the sense that all their values are nonnegative and their values sum to over (a condition that is unsatisfiable when is empty, making the theorem vacuous in that case; no assumption at all is placed on whether is empty beyond finiteness — though if is nonempty then forces to be nonempty too). Let be an arbitrary function, with no further hypotheses. For a function on , its pushforward along is the function defined pointwise by , the sum of over the fiber of (an empty sum, hence , when has no preimage). The total-variation distance used here is defined, for two real-valued functions on a finite type , as
the supremum over all finite subsets of (including the empty set); since is finite this is a maximum over all subsets, and note this definition carries no factor of and is not a pointwise sum. The theorem asserts the single non-strict inequality
i.e., the total-variation distance between the pushforward distributions on is at most the total-variation distance between the original distributions on . The two distribution hypotheses on and are the only substantive assumptions; nothing is assumed about (it need not be surjective or injective), and the inequality is , not .
Confirmed by the mission captain (proposal self-audit).