Summary (Overview)
- Main Result: The paper proves that no strongly regular graph with parameters (266, 45, 0, 9) exists, providing a complete formal proof in Lean 4 and Mathlib.
- Novel Approach: The proof uses a lattice-theoretic construction — a hypothetical graph yields a rank-12 integral Gram lattice, which is then completed to a positive-definite even unimodular rank-24 lattice with a marked factor.
- Certificate-Free: Unlike earlier drafts, the proof avoids external infeasibility certificates, shell enumerations, and classification theorems, relying only on the three standard Lean axioms.
- Two-Branch Structure: The main argument splits into a lattice/binary-projection branch and a design-theoretic branch (excluding a quasi-symmetric 2-(56, 12, 9) design).
- Verification: The formalization is independently checked with nanoda, with the archived release at DOI 10.5281/zenodo.22509839 (v2.0.0).
Introduction and Theoretical Foundation
A strongly regular graph with parameters is a finite simple graph with vertices where each vertex has neighbours, adjacent vertices share common neighbours, and distinct nonadjacent vertices share common neighbours. For the parameters (266, 45, 0, 9), the adjacency spectrum would be:
Key theoretical tools:
- The Hoffman ratio bound for a coclique is 56.
- Euclidean representations and Gram matrices are standard tools for studying strongly regular graphs.
- Prior results excluded 5-chromatic graphs and graphs containing a Delsarte coclique of size 56, but this proof makes no such assumptions.
The mathematical mechanism proceeds through the chain:
Methodology
1. Local Gram Lattice Construction
Fix a vertex with neighbourhood (45 vertices) and (220 vertices). The key object is the matrix:
where is the incidence matrix product and is the induced graph on . This yields:
The lattice (quotient of by the radical of ) is positive-definite of rank 12.
Integral Centroid (Proposition 2.3): There exists such that:
2. Marked Completion in Dimension 24
A Lorentzian change of form gives signature (11,1) with:
The vectors satisfy:
A marked gluing produces the even lattice where . The completion yields a positive-definite even unimodular lattice of rank 24.
3. Root System Determination
Root Isolation Lemma: Every root of is either a root of the marked or orthogonal to its span. This follows from a root-isolation inequality: if for the component, then but also , giving , a contradiction.
Venkov's Harmonic Root Identity:
This forces the root system to be with 288 roots.
4. Design-Theoretic Branch
The type-A subcase constructs a quasi-symmetric 2-(56, 12, 9) design, which is excluded via:
- Local triangular graphs
- Ternary self-orthogonality gluing to a canonical biplane
- Construction of a Krein graph SRG(324, 57, 0, 12)
- Forcing a Steiner 3-(12, 4, 1) design, contradicting
Empirical Validation / Results
Component Masses
After normalization, the 220 indices split into two types:
| Type | |||
|---|---|---|---|
| I | 9 | 9/4 | 0 |
| II | 1 | 11/12 | 4/3 |
First moments give:
Complement Elimination
Trace bounds eliminate three of the four possible rank-six complements:
| 3-primary part | 5-primary part | det | |
|---|---|---|---|
| 0 | 3 | ||
| 15 | |||
| 15 | |||
| 75 |
Only survives, leading to the final binary projection trace:
with and . The only solution up to interchange is , giving , contradicting .
Verification Metrics
| Lean project build | nanoda check | |
|---|---|---|
| Wall time | 884.17 s | 24.47 s |
| Largest child-process RSS | 3.85 GiB | 1.81 GiB |
| Declarations checked | — | 77,402 |
Theoretical and Practical Implications
- Methodological Innovation: The proof demonstrates that preserving local incidence data through lattice constructions can replace large certificate-based searches. The "extra dimensions" of the rank-24 completion impose identities on the original configuration.
- Formal Verification: The proof is fully formalized in Lean 4 with only the three standard axioms (propext, Classical.choice, Quot.sound), checked independently by two different proof checkers.
- Classification-Free: The design branch avoids the Hall–Connor embedding theorem and biplane classifications, replacing them with local graph identities and divisibility arguments.
- Recovery of Known Results: Together with the classical subconstituent theorem, the result recovers the known nonexistence of SRG(324, 57, 0, 12).
Conclusion
The paper establishes the nonexistence of a strongly regular graph with parameters (266, 45, 0, 9) through a "certificate-free" proof that preserves a local frame while changing its ambient geometry. The integral centroid provides the arithmetic foundation for a marked even unimodular completion; a root-isolation gap and vanishing harmonic theta series determine the root system ; first moments fix shell-type counts; and second moments bound remaining projections, culminating in the impossible binary projection identity .
The design branch follows the same principle: compatibility across local triangular structures replaces separate searches, and a forced Steiner completion ends in the elementary divisibility contradiction . The result is an end-to-end formal proof with no external infeasibility data, verified in Lean 4 and independently checked with nanoda.
Related papers
- Effective Learning Rate Governs Loss Dynamics in Language Model Pretraining
Learning rate and parameter norm govern language model pretraining loss dynamics almost entirely through their ratio, the effective learning rate, collapsing loss trajectories across diverse training configurations.
- Why Gated DeltaNet Survives 4-Bit Quantization: NVFP4 W4A4 for the Recurrent Half of a Hybrid 27B LLM
NVFP4 W4A4 quantization matches BF16 accuracy on a hybrid 27B LLM because Gated DeltaNet's gating and delta-rule recurrence make it more robust to quantization than attention layers.
- Learning with Synthetic Data via SGD in High-Dimensional Linear Regression
Mixed training with synthetic data causes strong model collapse with a non-vanishing error floor, while two-stage training avoids it entirely by using synthetic data as initialization.