Each two non-adjacent vertices have exactly two common neighbors.
Equations
- Conway99Graph.NonEdgesAreDiagonals G = Pairwise fun (i j : V) => ¬G.Adj i j → (G.neighborSet i ∩ G.neighborSet j).ncard = 2
Instances For
Does there exist an undirected graph with 99 vertices, in which each two adjacent vertices have exactly one common neighbor, and in which each two non-adjacent vertices have exactly two common neighbors? Equivalently, every edge should be part of a unique triangle and every non-adjacent pair should be one of the two diagonals of a unique 4-cycle. The first condition is equivalent to being locally linear.
The triangle is an example with 3 vertices satisfying the condition.
The box product of two triangles is an example with 9 vertices satisfying the condition. (This graph is the complement of the one described in https://vimeo.com/109815595 and it is also isomorphic to it and to the Paley graph and the graph of the 3-3 duoprism)
Equations
- Conway99Graph.Conway9 = completeGraph (Fin 3) □ completeGraph (Fin 3)