A counterexample to Diaz's conjecture is transcendental over
ProvedDiaz.transcendental_of_candidateLet with and suppose is algebraic over . Then
("Transcendental over " is by definition the negation of "algebraic over ": is a root of no non-zero rational polynomial.)
Why. This is the contrapositive of the Hermite–Lindemann theorem. If were algebraic and non-zero, Hermite–Lindemann would make transcendental, contradicting the hypothesis that it is algebraic.
What it rests on. The single-exponent Hermite–Lindemann theorem — for every non-zero algebraic , is transcendental — is a theorem of Hermite (1873) and Lindemann (1882), but it is not present in the platform's Mathlib: only the analytic half of the Lindemann–Weierstrass development is there. It is a published node of this library, DiazModulus.hermite_lindemann_holds, still open, and this theorem reduces to it. The passage between the two forms is the classical contraposition just described and carries no arithmetic content.
Role. In the source project this is the single point of contact between the algebraic development and the imported transcendence input: every other theorem in the project that depends on Hermite–Lindemann depends on it through this one statement. Publishing it as a node with an explicit reduction is what turns a global assumption into a visible edge of the dependency graph.
import Mathlib
open ComplexConjugate
variable (K : Subfield ℂ) (u : ℂ)
variable {K u}theorem Diaz.transcendental_of_candidate (hu : u ≠ 0)
(hexp : IsAlgebraic ℚ (Complex.exp u)) : Transcendental ℚ u := by sorry