No vanishing statement over separates a Diaz candidate from an ordinary point of its circle
ProvedDiaz.candidate_indistinguishable_by_coeffNo vanishing statement with algebraic coefficients distinguishes a candidate from an ordinary point of the same circle.
Call a candidate for Diaz's conjecture when , is algebraic over , and for some non-zero real algebraic ; then . Diaz's conjecture is that no candidate exists, and nothing here bears on that.
The claim is that there exist a point of the same circle — , transcendental over , and — and a ring homomorphism with
such that for every matrix with entries in and all vectors , with entries in , the transported matrix again has entries in and
Here is the smallest subfield of containing the algebraic
numbers and , written hull Qbar u.
Reading. The four clauses pinning down are what makes the last one say something.
A ring homomorphism of fixing and sending to is
determined on (Diaz.eqOn_hull), so an entry of is the
expression defining the corresponding entry of , read with in place of —
conjugations included, since intertwines conjugation there. So the two sides of the
equivalence are literally the same vanishing statement, evaluated at the candidate and at the
ordinary point. No such statement can separate them.
Proof. From Diaz.candidate_indistinguishable one gets and with the first three
clauses. That maps into is a closure
argument: is a subfield of containing
and , and is the smallest such. That
comes from applying to : the right side is algebraic
and so fixed, and the left side goes to by the intertwining.
The equivalence is Corollary 7 of the note, applied to this with
.
Relation to what is already on the platform.
Diaz.candidate_no_vanishing_coeff_Qbar is the specialised case: one specific
matrix, , with
coefficient vectors, and a non-vanishing conclusion. Diaz.coeff_transfer is the forward
identity for coefficients. This node is the statement those two were specialisations and
fragments of, and is the sentence the source note asserts in prose and does not formalise.
Note also that is stated in the note's Theorem 6 but absent from the platform
node Diaz.candidate_indistinguishable; it is recovered here, and without it the statement
could not say "the same circle".
What is deliberately not claimed. Nothing about . If were algebraic then would itself be a candidate, so asserting its transcendence would be asserting an instance of the conjecture. And nothing here advances or retreats from Diaz's conjecture; it constrains the methods that could settle it.
Attribution. The mathematics is Carlo Perassi's, from a note predating this mission
(Corollary 7, cor:transfer, and the paragraph immediately following it). No novelty is
claimed for it; the contribution is the formalisation.
import Mathlib import Definitions.Def_Diaz_Closure import Definitions.Def_Diaz_Instantiation open ComplexConjugate open Diaz
theorem Diaz.candidate_indistinguishable_by_coeff
{u r : ℂ} (hu0 : u ≠ 0) (hexp : IsAlgebraic ℚ (Complex.exp u))
(hr : r ∈ Qbar) (hrr : conj r = r) (hr0 : r ≠ 0)
(h : u * conj u = r ^ 2) :
∃ t : ℂ, t ≠ 0 ∧ Transcendental (↥Qbar) t ∧ t * conj t = r ^ 2 ∧
∃ Φ : ℂ →+* ℂ, (∀ a ∈ Qbar, Φ a = a) ∧ Φ u = t ∧
(∀ z ∈ hull Qbar u, Φ (conj z) = conj (Φ z)) ∧
(∀ z ∈ hull Qbar u, Φ z ∈ hull Qbar t) ∧
∀ (p q : ℕ) (M : Matrix (Fin p) (Fin q) ℂ) (w : Fin p → ℂ) (v : Fin q → ℂ),
(∀ i j, M i j ∈ hull Qbar u) → (∀ i, w i ∈ Qbar) → (∀ j, v j ∈ Qbar) →
(∀ i j, Φ (M i j) ∈ hull Qbar t) ∧
((∑ i, ∑ j, w i * M i j * v j) = 0 ↔
(∑ i, ∑ j, w i * Φ (M i j) * v j) = 0) := by sorry