Spectral identity:
ProvedConway99.conway_99_adjMatrix_sqcombinatoricsgraph-theorystrongly-regular-graphs
Let be the adjacency matrix over of a strongly regular graph with parameters , let be the identity matrix and let be the all-ones matrix. Then
This is the general strongly regular identity with . Equivalently , which exhibits and as the eigenvalues of on the space orthogonal to the all-ones vector; their multiplicities are and . The identity is the entry point to every spectral argument about a hypothetical -graph.
Preamble
import Mathlib.Combinatorics.SimpleGraph.StronglyRegular import Mathlib.Data.Matrix.Basic open SimpleGraph
Formal statement
namespace Conway99
theorem conway_99_adjMatrix_sq {V : Type*} [Fintype V] [DecidableEq V]
{g : SimpleGraph V} [DecidableRel g.Adj] (h : g.IsSRGWith 99 14 1 2) :
(g.adjMatrix ℤ) ^ 2 + g.adjMatrix ℤ =
12 • (1 : Matrix V V ℤ) + 2 • (Matrix.of fun _ _ => (1 : ℤ)) := by sorry
end Conway99Source
Adjacency matrix identity for strongly regular graphs (cf. Mathlib SimpleGraph.IsSRGWith.matrix_eq), specialised to (99, 14, 1, 2); https://en.wikipedia.org/wiki/Strongly_regular_graph
Human review
Confirmed by the mission captain (proposal self-audit).