Monotone CFTP: two trajectories certify coalescence
ProvedMarkovMixing.monotone_cftp_coalescenceLet be a finite state space carrying a partial order with a smallest element and a largest element , and let be monotone maps: implies . Write for their composition (as in coupling from the past, where the are the update maps drawn at times and the deepest map applies first).
The theorem (§22.2 of Levin–Peres–Wilmer, the principle behind monotone CFTP) asserts: if the composition merely identifies the two extremes,
then is constant on all of : for every pair of states.
A composition of monotone maps is monotone, so for every ; when the two ends meet, everything between is squeezed to the same value. This is what makes CFTP practical on exponentially large ordered state spaces: instead of tracking all trajectories, the algorithm runs just two — from the top state and the bottom state — and their meeting certifies global coalescence. For the Ising model of Mission IX, whose heat-bath updates are monotone for the coordinatewise spin order, this reduces trajectories to .
import Definitions.Def_mm_cftp import Mathlib.Order.Bounds.Basic
namespace MarkovMixing
/-- **§22.2, monotone CFTP** (LPW): if the state space carries a partial
order with a top and a bottom state and every update map is monotone, then
the composition collapses the whole space as soon as it identifies the top
and bottom states — the upper and lower trajectories of the monotone CFTP
algorithm sandwich all others. -/
theorem monotone_cftp_coalescence {V : Type*} [Fintype V] [DecidableEq V]
[PartialOrder V] [OrderBot V] [OrderTop V]
{t : ℕ} (F : Fin t → (V → V)) (hmono : ∀ i, Monotone (F i))
(hmeet : cftpCompose F ⊥ = cftpCompose F ⊤) :
∀ x y : V, cftpCompose F x = cftpCompose F y := by
sorry
end MarkovMixingRead-back
What the Lean code literally says, in plain math · claude-fable-5
Read-back: monotone_cftp_coalescence
Let be a finite type with decidable equality, equipped with a partial order that has both a least element and a greatest element (the OrderBot/OrderTop instances; note this forces to be nonempty, but the order need not be total or a lattice). Fix a natural number and a -tuple of maps , each . Assume:
- every map is monotone: implies ;
- the composed map (highest index applied first, index last; the identity map when ) takes the same value at the two extremes: .
The conclusion is that is constant on all of : for every pair , . No probabilistic data appears anywhere in this statement — there is no matrix, no distribution on maps, and no stochasticity assumption; it is a purely order-theoretic assertion about one fixed finite tuple of monotone self-maps. Edge case: when , is the identity, hypothesis 2 reads , and the conclusion then says every two elements of are equal.
Confirmed by the mission captain (proposal self-audit).