Hypercube separation cutoff at
ProvedMarkovMixing.hypercube_separation_cutoffThe lazy random walk on the -dimensional hypercube has state space ; at each step it stays put with probability and otherwise flips a uniformly chosen coordinate; its stationary distribution is uniform. The maximal separation distance at time is
which vanishes only when every transition probability has reached its uniform value (Mission III). A family has a separation cutoff at with window when and tends (in the liminf/limsup sense) to as and to as .
The theorem (Theorem 18.8 of Levin–Peres–Wilmer) asserts: the lazy hypercube walk has a separation cutoff at
Separation converges abruptly too — but at , twice the total-variation cutoff time of the companion theorem. The pair is the standard example that the two notions of mixing genuinely differ at the level of constants. The upper bound comes from the coordinate-refresh strong stationary time (all coordinates updated, a full coupon collection); the lower bound tracks the probability that some coordinate is still unrefreshed.
import Definitions.Def_mm_cutoff import Mathlib.Analysis.SpecialFunctions.Log.Basic
namespace MarkovMixing
/-- **Theorem 18.8** (LPW): the lazy random walk on the `n`-dimensional
hypercube has a *separation* cutoff at `n log n` with a window of order
`n`. -/
theorem hypercube_separation_cutoff :
HasSepCutoffWindow (fun n => hypercubeWalk n)
(fun n => uniformDist (Fin n → ZMod 2))
(fun n => n * Real.log n) (fun n => n) := by
sorry
end MarkovMixingRead-back
What the Lean code literally says, in plain math · claude-fable-5
Read-back: hypercube_separation_cutoff
This is a closed statement with no hypotheses. For each natural number , let (size ; a single point when ) and let be the lazy hypercube walk, where when differ in exactly one coordinate (that is the adjacency of the underlying graph — "agree off one coordinate and ", which in means — so every degree is ) and otherwise; for the graph has no edges, makes , and is not stochastic (no stochasticity is assumed anywhere). Let be the constant function on ; it is not hypothesized to be stationary. Define the separation supremum at time as
a real supremum over all ordered pairs of states (division here is total, but always). The theorem asserts the separation cutoff-window property with center and width (real ; and give ), i.e. the conjunction of:
- as (total real division; the terms are );
- the map tends to as ;
- the map tends to as ;
where is the natural-number floor (negative reals go to , so for fixed negative the small- terms are evaluated at time ). Note that measures minus the ratio of the transition probability to the uniform value — not a total-variation distance.
Confirmed by the mission captain (proposal self-audit).