You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All references to "Zhou graph" now say "Zhou-3 graph" to distinguish
from the 6-regular Zhou-6 quotient. Re-adds image links that were
lost during the Zhou-6 edge list addition.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
* [The Zhou-6 quotient](https://raw.githubusercontent.com/RaggedR/symmetric-graphs/main/lean/named_graphs/zhou6-91v.jpg) — 91-vertex quotient by the Z₂ block system
25
+
21
26
## Main results
22
27
23
-
* `zhouGraph_regular` — the Zhou graph is 3-regular
28
+
* `zhouGraph_regular` — the Zhou-3 graph is 3-regular
24
29
* `zhou6Graph_regular` — the Zhou-6 graph is 6-regular
25
30
* `zhou6_eq_quotient` — the Zhou-6 graph equals `zhouGraph.quotientGraph zhouBlockMap`
26
31
@@ -31,7 +36,7 @@ The **Zhou-6 graph** is the Z₂ quotient: Sab(PSL(2,13), D₁₂), a 6-regular
31
36
32
37
set_option linter.style.nativeDecide false
33
38
34
-
/-! ### The Zhou graph (3-regular, 182 vertices) -/
39
+
/-! ### The Zhou-3 graph (3-regular, 182 vertices) -/
35
40
36
41
privatedefzhouEdges : List (Fin 182 × Fin 182) := [
37
42
(0,3),(0,37),(0,68),(1,4),(1,38),(1,71),
@@ -84,7 +89,7 @@ private def zhouEdges : List (Fin 182 × Fin 182) := [
84
89
privatedefzhouAdjBool (u v : Fin 182) : Bool :=
85
90
zhouEdges.any fun (a, b) => (u == a && v == b) || (u == b && v == a)
0 commit comments