Curie--Weiss: exponentially slow mixing for
ProvedMarkovMixing.ising_complete_graph_slowThe Curie–Weiss model is the Ising model on the complete graph : spins on vertices with Gibbs distribution at , and the Glauber dynamics re-samples a uniformly chosen site from the conditional distribution. The mixing time is the first at which , with the total variation distance.
The theorem (Theorem 15.3(ii) of Levin–Peres–Wilmer) asserts: for every there are a rate and a constant such that for all sufficiently large ,
Above the critical temperature parameter the dynamics is exponentially slow — the low-temperature half of the dynamical phase transition, in the sharpest possible contrast with the mixing below . The obstruction is an energy barrier: at the magnetization concentrates near two symmetric values , and passing from one well to the other forces the chain through configurations of exponentially small stationary mass; the bottleneck bound of Mission IV converts that barrier into the exponential lower bound.
import Definitions.Def_mm_ising import Mathlib.Analysis.SpecialFunctions.Log.Basic
namespace MarkovMixing
/-- **Theorem 15.3(ii)** (LPW): for the Glauber dynamics of the Ising model
on the complete graph at `β = α/n` with `α > 1`, the mixing time is
exponentially large: there are `r(α) > 0` and `C > 0` with
`t_mix ≥ C e^{r(α) n}` for all large `n`. -/
theorem ising_complete_graph_slow (α : ℝ) (hα : 1 < α) :
∃ r : ℝ, 0 < r ∧ ∃ C : ℝ, 0 < C ∧ ∃ N : ℕ, ∀ n : ℕ, N ≤ n →
C * Real.exp (r * n) ≤
(tMix (glauber (isingDist (⊤ : SimpleGraph (Fin n)) (α / n)))
(isingDist (⊤ : SimpleGraph (Fin n)) (α / n)) : ℝ) := by
sorry
end MarkovMixingRead-back
What the Lean code literally says, in plain math · claude-fable-5
Read-back: ising_complete_graph_slow
Hypothesis. A real with (strict).
Objects. For each , the graph is the complete graph on (Lean's simple graph), the parameter is (real division; for this is the junk value ), is the Ising measure on configurations proportional to (sum over unordered pairs, from the code's half-weighted ordered double sum), and is the heat-bath single-site chain (uniform random vertex, resample its spin from the conditional of ). The quantity bounded is
the mixing time at the fixed threshold , where over subsets of configurations; by the -infimum convention this is if no such exists.
The claim. There exist a real , a real , and a natural number such that for every ,
with the natural-number mixing time cast to a real on the right.
Reading the quantifiers precisely: the rate and constant are chosen once, before , and the bound must then hold for all simultaneously; both existentials are plain (no uniqueness), and carries no positivity constraint. This is an exponential lower bound on the -mixing time along the sequence of complete graphs at . Note the theorem's content is asymptotic — any finitely many can be discarded by enlarging — and it says nothing about .
Confirmed by the mission captain (proposal self-audit).