Algebraic squared distance forces an algebraic ratio
ProvedDiaz.quot_isAlgebraic_of_algebraic_distLet be a subfield and let with . If the three squared moduli
all lie in , then is algebraic over .
Where this sits. This is the first half of the proof of Theorem 2.1 (thm:distance-plane, Algebraic-distance and plane rigidity) of the manuscript, the implication
for in the Diaz candidate locus, stated over an arbitrary base field because that is all the argument uses.
Proof. Put . The two identities
place both coefficients of in , so is a root of a monic quadratic over . Dividing that quadratic by turns it into a monic quadratic satisfied by . The Lean writes down that quadratic directly and checks it is non-zero by reading its coefficient in degree two.
What is deliberately not claimed. The manuscript's theorem concludes , not merely algebraicity. That last step is the Gelfond–Schneider quotient dichotomy for two non-zero logarithms, which is not available in this Mathlib revision and is not asserted here. Specialising recovers exactly the algebraic-ratio conclusion of the manuscript's first paragraph.
The converse direction of the manuscript's equivalence is the trivial computation and is not published.
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.quot_isAlgebraic_of_algebraic_dist {K : Subfield ℂ} {u v : ℂ} (hv0 : v ≠ 0)
(hu : u * conj u ∈ K) (hv : v * conj v ∈ K)
(hd : (u - v) * conj (u - v) ∈ K) :
IsAlgebraic (↥K) (u / v) := by sorry