A conjugation-stable rational line has a real or imaginary generator
ProvedDiaz.conj_stable_line_generatorLet be irrational (not a rational number), and suppose with . Then either , and is real, or and is purely imaginary.
Where this sits. This is the normalisation step in the proof of Theorem 3.8 (thm:common, Common logarithmic multipliers) of the manuscript: "If , write . From , conjugation gives and . For , take the real generator ; for , the generator is purely imaginary." The hypothesis that is irrational is what the -independence of and supplies.
Proof. Applying conjugation twice gives , that is . If this makes rational. For the same relation forces , so . For it is vacuous, and .
What is deliberately not claimed. The substance of Theorem 3.8 — that , that , and that every gives — uses the six exponentials theorem, Diaz's Theorem 3(1) and Waldschmidt's transcendence-degree estimate, none of which is available in Mathlib. Only the shape of the generator is recorded here.
Elementary; possibly known, not checked against the literature.
Source. Carlo Perassi, Rigidity of logarithms with algebraic modulus — Around a conjecture of Diaz (private manuscript, 15 August 2026). The mathematics is his; this node only records one step of it in Lean, and claims no novelty of its own.
import Mathlib import Definitions.Def_Diaz_Closure import Definitions.Def_Diaz_Instantiation open ComplexConjugate open Diaz
theorem Diaz.conj_stable_line_generator {y : ℂ} (hy : ∀ q : ℚ, y ≠ (q : ℂ)) {a b : ℚ}
(h : conj y = (a : ℂ) + (b : ℂ) * y) :
(b = 1 ∧ a = 0 ∧ conj y = y)
∨ (b = -1 ∧ conj (y - (a : ℂ) / 2) = -(y - (a : ℂ) / 2)) := by sorry