Coordinate ratios on a rational subspace of the quadric z1 z2 = z3 z4
ProvedDiaz.rational_subspace_quadric_ratiosLet be a subfield and let be a -subspace which is defined over — every element of is a -linear combination of elements of all of whose coordinates lie in — and which is contained in the quadric
Let have all four coordinates non-zero. Then
(Coordinates are indexed in the Lean statement; here they are written .)
Mathematical role. This is the usable form of the classification of -rational subspaces of singular matrices: a point of the quadric with no vanishing coordinate that lies on a -rational linear subspace of the quadric has one of two prescribed pairs of coordinate ratios in . The identification is
under which becomes a -rational subspace of singular matrices containing a matrix with no zero entry. The first alternative is the case where the matrices of share their image line, and the ratios are the ratios down each column; the second is the shared-kernel case, and the ratios are the ratios along each row.
Where this sits. Two theorems of the manuscript apply a transcendence theorem of Roy and Waldschmidt to produce exactly such a , and then use exactly this conclusion.
Theorem 2.5 (thm:pair-dichotomy, Pair dichotomy: rational proportionality or independence) is applied at
for two candidates of the Diaz locus with rationally commensurable squared moduli; here . The first alternative gives , the second gives ; together they are the conclusion .
Theorem 3.9 (thm:mixed-rigidity, Mixed-coordinate rigidity at a Diaz point) is applied at
for in the Diaz locus and a non-zero logarithm; again . The first alternative gives and the second gives , that is respectively — the two rays that those theorems exclude by hypothesis. The same instantiation with serves Theorem 3.10.
The manuscript works with ; the argument uses only that is a field, so the node is stated over an arbitrary subfield of .
What is deliberately not claimed. The existence of the subspace is the whole transcendence content and is a hypothesis here, not a conclusion. In the manuscript it comes from Théorème 0.2 of Roy–Waldschmidt (1997) for Theorem 2.5 and from their Théorème 7.1 for Theorems 3.9 and 3.10; neither is available in this Mathlib revision. What this node records is the elementary residue of those proofs once the cited theorem has been granted: everything after "the quadratic theorem of Roy–Waldschmidt therefore places in a vector subspace defined over ". It asserts nothing about algebraic independence and nothing about transcendence degrees.
Formalization note. "Defined over " is the hypothesis ; the reverse inclusion holds for any subspace, so this says exactly that is the complex span of its -rational points. The proof pushes forward along and applies Diaz.rational_singular_subspace_classification.
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.rational_subspace_quadric_ratios
{K : Subfield ℂ} {W : Submodule ℂ (Fin 4 → ℂ)}
(hK : W ≤ Submodule.span ℂ {z : Fin 4 → ℂ | z ∈ W ∧ ∀ i, z i ∈ K})
(hQ : ∀ z ∈ W, z 0 * z 1 - z 2 * z 3 = 0)
{x : Fin 4 → ℂ} (hx : x ∈ W) (hx0 : ∀ i, x i ≠ 0) :
(x 0 / x 3 ∈ K ∧ x 2 / x 1 ∈ K) ∨ (x 0 / x 2 ∈ K ∧ x 3 / x 1 ∈ K) := by sorry