This is an archived version pinned as of the submission of my master's thesis. An up-to-date version may be found online.
Cycles in undirected graphs
module graph-theory.cycles-undirected-graphs where
Imports
open import elementary-number-theory.natural-numbers open import foundation.dependent-pair-types open import foundation.universe-levels open import graph-theory.embeddings-undirected-graphs open import graph-theory.polygons open import graph-theory.undirected-graphs
Idea
A
cycle¶
in an undirected graph G
consists of a
k
-gon H
equipped with an
embedding of graphs from H
into G
.
Definition
module _ {l1 l2 : Level} (k : ℕ) (G : Undirected-Graph l1 l2) where cycle-Undirected-Graph : UU (lsuc lzero ⊔ l1 ⊔ l2) cycle-Undirected-Graph = Σ (Polygon k) (λ H → emb-Undirected-Graph (undirected-graph-Polygon k H) G)
External links
- Cycle at Mathswitch
- Cycle on Wikidata
- Cycle (graph theory) at Wikipedia
- Graph cycle at Wolfram Mathworld