Circuits in undirected graphs
Content created by Jonathan Prieto-Cubides, Egbert Rijke, Fredrik Bakke and Vojtěch Štěpančík.
Created on 2022-06-15.
Last modified on 2024-10-16.
module graph-theory.circuits-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.polygons open import graph-theory.totally-faithful-morphisms-undirected-graphs open import graph-theory.undirected-graphs
Idea
A circuit¶
in an undirected graph G
consists of a
k
-gon H
equipped with a
totally faithful
morphism of undirected graphs
from H
to G
. In other words, a circuit is a closed walk with no repeated
edges.
Definition
module _ {l1 l2 : Level} (k : ℕ) (G : Undirected-Graph l1 l2) where circuit-Undirected-Graph : UU (lsuc lzero ⊔ l1 ⊔ l2) circuit-Undirected-Graph = Σ ( Polygon k) ( λ H → totally-faithful-hom-Undirected-Graph (undirected-graph-Polygon k H) G)
External links
- Cycle at Mathswitch
- Cycle (Graph Theory) at Wikipedia
- Graph Cycle at Wolfram MathWorld
Recent changes
- 2024-10-16. Fredrik Bakke. Some links in elementary number theory (#1199).
- 2024-03-23. Vojtěch Štěpančík. Enhancements for the Concepts macro (#1093).
- 2023-11-02. Vojtěch Štěpančík. Add a mdbook
#concept
macro (#884). - 2023-10-13. Egbert Rijke. Fix links to wikidata to the recommended links; add concept tags at end of file for testing purposes (#837).
- 2023-10-12. Egbert Rijke. Creating internal and external links in Graph Theory (#832).