is a rank-one projection: , ,
ProvedDiaz.Gmat_projectionThe real form of the candidate matrix is times a rank-one projection.
Write with real, let , and assume the candidate relation . Put
Then , , and is idempotent: .
Why. The hypothesis says exactly , whence ; the trace is immediate; and a matrix with zero determinant satisfies , so .
Role. This is the substance of the manuscript's Real projection normal form: the obstruction attached to a Diaz candidate can be presented as a genuine real rank-one orthogonal projection whose entries lie in the augmented logarithm space — because and are logarithms and is algebraic. The manuscript then observes that the projection has no vanishing non-zero algebraic matrix coefficient and that its spectral slopes lie outside , which is what turns "every real rank-one orthogonal projection over has an algebraic image or kernel line" into a sufficient target for Diaz's conjecture. The Lean statement isolates the projection property itself, which is unconditional.
Source: Carlo Perassi's private manuscript on Diaz's modulus conjecture, section The precise open boundary, corollary Real projection normal form. Elementary; no novelty is claimed.
import Mathlib open ComplexConjugate
theorem Diaz.Gmat_projection {u r : ℂ} (x y : ℝ) (hu : u = (x : ℂ) + (y : ℂ) * Complex.I)
(hr : r ≠ 0) (h : u * conj u = r ^ 2) :
(!![r + (x : ℂ), -(y : ℂ); -(y : ℂ), r - (x : ℂ)]).det = 0
∧ Matrix.trace (!![r + (x : ℂ), -(y : ℂ); -(y : ℂ), r - (x : ℂ)]) = 2 * r
∧ ((2 * r)⁻¹ • (!![r + (x : ℂ), -(y : ℂ); -(y : ℂ), r - (x : ℂ)]))
* ((2 * r)⁻¹ • (!![r + (x : ℂ), -(y : ℂ); -(y : ℂ), r - (x : ℂ)]))
= (2 * r)⁻¹ • (!![r + (x : ℂ), -(y : ℂ); -(y : ℂ), r - (x : ℂ)]) := by sorry