Quantisation of the real branch: a candidate with real exponential has
ProvedDiaz.real_quantisationSource. This is Carlo Perassi's mathematics, from his unpublished note on Diaz's modulus conjecture, section Polar coordinates and the discreteness of the period, statement Theorem (Quantisation of the real branch). Published on his mission with his permission. No novelty is claimed for it here; the argument is elementary, and it is possibly known — it has not been checked against the literature.
Statement. Let lie on neither axis (, ) and suppose is real. Then , and consequently
What it says in the mission's terms. On the Diaz locus the two axis exclusions are supplied by Diaz.not_on_axes, so every candidate whose exponential is real satisfies them. The conclusion is that the real branch of the locus is quantised: its points are with , and their norms are bounded below by — they cannot accumulate at .
Why the bound is not formal. It is exactly the place where the mission's Laurent shadow model (Diaz.model_falsifies, Diaz.Exp0_*) parts company with the actual exponential. There is a divisible line, the shadow locus is stable under , and its norms accumulate at ; here is a rank-one lattice inside the divisible line , and both conclusions fail in the model. The real branch is also, unlike the full locus, not stable under : has real exponential only when .
Reading the Lean. (Complex.exp u).im = 0 is " is real"; Complex.normSq u is .
Proof. Complex.exp_im gives , and , so and for some integer . Since we have , hence and ; adding gives the strict inequality.
import Mathlib open ComplexConjugate
theorem Diaz.real_quantisation {u : ℂ} (hexp : (Complex.exp u).im = 0)
(hre : u.re ≠ 0) (him : u.im ≠ 0) :
(∃ n : ℤ, u.im = n * Real.pi) ∧ Real.pi ^ 2 < Complex.normSq u := by sorry