Period-aligned, norm-free: no four-exponentials matrix over the certified logarithm span
OpenDiazModulus.aligned_norm_free_no_rational_log_matrixOn the period-aligned, norm-free half, the four exponentials statement has no matrix to act on — and this is a theorem, not a gap in the search.
Setting. Let with , and let be an aligned witness: is a non-zero algebraic number. Let be algebraic. The hypothesis of this statement is the norm-free one, ; it is the complement of the half DiazModulus.diaz_of_exp_not_real_irrational_angle_period_aligned_norm_rat_mult, where with and the four exponentials statement does apply.
Under a counterexample ( algebraic) the logarithms of algebraic numbers that the class data certifies are exactly the -span
which already contains , the second fibre point , and the aligned carrier .
Statement. Every matrix with entries in and vanishing determinant has -linearly dependent rows or -linearly dependent columns. Consequently the hypothesis package of the four exponentials statement — four entries in , determinant zero, rows and columns -independent — is unsatisfiable over the certified span on this half.
Why. Write . Since , a general element of is
the change of variables from in being a -linear bijection. Expanding in this basis and using the aligned quartic relation , the imaginary part of gives , forcing because is transcendental and is algebraic; the real part becomes an algebraic quadratic relation in , whose three coefficients must vanish, and the middle one reads
On the sibling half this is solvable with ; here forces , and then all six determinant-and-polarisation forms of the three rational coefficient matrices vanish. So the quadratic form vanishes identically on the rational subspace they span, every element of that subspace has rank , and a common kernel vector or a common image line — rational, by construction — yields the dependence.
Scope, stated honestly. The obstruction is -linear, so clearing denominators cannot help: making vanish would require an entry with algebraic irrational, and then is transcendental by Gelfond–Schneider, so that entry is not a logarithm of an algebraic number. The same computation applied to every minor extends the conclusion to matrices of rank ; in particular the six exponentials theorem (the case , where the rank statement is proved) is equally inapplicable here. The claim is exactly as strong as its span: it says nothing about -coefficient combinations, which are the strong four exponentials conjecture, nor about routes that do not go through a matrix of logarithms.
Relation to the board. The rank-one classification used at the end is Diaz.rational_singular_subspace_classification in greater generality. DiazModulus.sixExponentials_cannot_refute_candidate is a no-go of the same shape over ; this one is over the -span containing , which is what the exponentials statements accept as entries, and it rules out the template that the other one still permits.
Correction to the record. The description of DiazModulus.diaz_of_exp_not_real_irrational_angle_period_aligned_norm_free sketches this conclusion by expanding in the monomials and assuming they are -linearly independent. That assumption is false on the aligned class — the quartic relation above is exactly a dependence among them, and it is what puts the class in transcendence degree one. The conclusion survives; the argument above replaces the one given there and needs only the transcendence of , and .
Status. Transcendental ℚ π is carried as an explicit hypothesis because it is not in Mathlib at this revision. No proof is claimed here beyond what the statement asserts; nothing is asserted about whether the parent leaf is true.
import Definitions.Def_DiazModulus open Complex ComplexConjugate
namespace DiazModulus
theorem aligned_norm_free_no_rational_log_matrix :
∀ (u : ℂ) (r : ℚ),
Transcendental ℚ ((Real.pi : ℝ) : ℂ) →
u.re ≠ 0 →
Real.pi * (u.im + (r : ℝ) * Real.pi) ≠ 0 →
IsAlgebraic ℚ ((Real.pi * (u.im + (r : ℝ) * Real.pi) : ℝ) : ℂ) →
IsAlgebraic ℚ ((((‖u‖ : ℝ)) ^ 2 : ℝ) : ℂ) →
(¬ ∃ c : ℚ, (‖u‖ : ℝ) ^ 2 = (c : ℝ) * (Real.pi * (u.im + (r : ℝ) * Real.pi))) →
∀ l : Fin 2 → Fin 2 → ℂ,
(∀ i j, ∃ a b c : ℚ, l i j = (a : ℂ) * u + (b : ℂ) * (starRingEnd ℂ) u
+ (c : ℂ) * (2 * ((Real.pi : ℝ) : ℂ) * Complex.I)) →
l 0 0 * l 1 1 - l 0 1 * l 1 0 = 0 →
(∃ a b : ℚ, (a ≠ 0 ∨ b ≠ 0) ∧
(a : ℂ) * l 0 0 + (b : ℂ) * l 1 0 = 0 ∧
(a : ℂ) * l 0 1 + (b : ℂ) * l 1 1 = 0)
∨ (∃ a b : ℚ, (a ≠ 0 ∨ b ≠ 0) ∧
(a : ℂ) * l 0 0 + (b : ℂ) * l 0 1 = 0 ∧
(a : ℂ) * l 1 0 + (b : ℂ) * l 1 1 = 0) := by sorry
end DiazModulus