Documentation

Mathlib.Combinatorics.SimpleGraph.Circulant

Definition of circulant graphs #

This file defines and proves several fact about circulant graphs. A circulant graph over type G with jumps s : Set G is a graph in which two vertices u and v are adjacent if and only if u - v ∈ s or v - u ∈ s. The elements of s are called jumps.

Main declarations #

Circulant graph over additive group G with jumps s

Equations
Instances For
    @[simp]
    theorem SimpleGraph.circulantGraph_adj {G : Type u_1} [AddGroup G] (s : Set G) (a b : G) :
    Equations
    • One or more equations did not get rendered due to their size.
    theorem SimpleGraph.cycleGraph_adj {n : } {u v : Fin (n + 2)} :
    (cycleGraph (n + 2)).Adj u v u - v = 1 v - u = 1
    theorem SimpleGraph.cycleGraph_adj' {n : } {u v : Fin n} :
    (cycleGraph n).Adj u v (u - v) = 1 (v - u) = 1