, and are -independent when is a non-zero element of
ProvedDiaz.indep_of_algebraic_productSource. 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 (Non-real two-point fibres force transcendental), the independence step in its proof. 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 be a subfield, transcendental over , and with . Then , , are linearly independent over .
Where it sits, and what it does not claim. In the manuscript this is the step that prepares Diaz's Corollaire 2 (P)(1) of 2007 for the triple , with and (transcendental by Lindemann). Applied there, Diaz's corollary gives ; since , one gets and hence transcendental, under the hypothesis that some algebraic exponential fibre contains two candidates with .
That conditional conclusion is not what this node asserts. Diaz's corollary is a deep input with no Mathlib formalisation at this revision, and the augmented logarithm space is not among the mission's definitions. What is recorded here is only the elementary independence step, which is self-contained and needs nothing beyond the transcendence of over . A contributor who formalises Diaz's Corollaire 2 can compose it with this node to obtain the statement.
Proof. Multiply by : since , this reads , a quadratic relation for with all three coefficients in . As is transcendental over , the polynomial must be zero, so and ; then forces .
import Mathlib open ComplexConjugate
theorem Diaz.indep_of_algebraic_product {K : Subfield ℂ} {p ν : ℂ}
(hp : Transcendental K p) (hβ : p * ν ∈ K) (hβ0 : p * ν ≠ 0)
{A B C : ℂ} (hA : A ∈ K) (hB : B ∈ K) (hC : C ∈ K)
(h : A + B * ν + C * p = 0) : A = 0 ∧ B = 0 ∧ C = 0 := by sorry