Hadamard conjecture: the Paley-II-times-power-of-two case
ProvedHadamard_Conjecture_paley2_sylvester_caseThis is the case of the Hadamard conjecture reachable by combining Paley's second construction with Sylvester's doubling construction via the Kronecker-product multiplicativity theorem.
Suppose is a natural number for which there exist a prime and a natural number with
Then there exists a matrix with every entry or attaining Hadamard's determinant bound .
Proof idea. Paley's second construction (Paley_construction_II, applied to the finite field ) gives a Hadamard matrix of order ; Sylvester's doubling construction gives one of order . The Kronecker-product multiplicativity theorem (Hadamard_matrix_kronecker_product) combines them into one of order .
This theorem is the Paley-II analogue of Hadamard_Conjecture_paley_sylvester_case (which uses Paley's first construction, , order ). Together they cover further not reachable by either construction alone — for instance (each ) give base orders , i.e. and all their doublings.
As with the Paley-I case, this theorem is intended as one branch of a finer case split refining Hadamard_Conjecture_residual; it does not by itself close the Hadamard conjecture.
Formalization Note The determinant bound follows internally from the orthogonality identity via and evenness of .
import Mathlib open Matrix
theorem Hadamard_Conjecture_paley2_sylvester_case (k : ℕ)
(hk : ∃ q t : ℕ, Nat.Prime q ∧ q % 4 = 1 ∧ 4 * k = (2 * (q + 1)) * 2 ^ t) :
∃ M : Matrix (Fin (4 * k)) (Fin (4 * k)) ℝ,
(∀ i j, M i j ∈ ({1, -1} : Finset ℝ)) ∧
|M.det| = ((4 * k : ℕ) : ℝ) ^ (((4 * k : ℕ) : ℝ) / 2) := by sorry