Lax68.GraphTopologicalMinors
Topological graph minors
concepts/Lax68/GraphTopologicalMinors.lean · lax-68
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A graph H is a topological minor of G when the vertices of H are represented by distinct branch vertices of G and its edges by paths whose interiors contain no branch vertex and are pairwise disjoint. Equivalently, G contains a subdivision of H as a subgraph.
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Paths |
| 2 | import Lax68.GraphMinors |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Topological graph minors |
| 7 | type: definition |
| 8 | --- |
| 9 | A graph *H* is a topological minor of *G* when the vertices of *H* are |
| 10 | represented by distinct branch vertices of *G* and its edges by paths whose |
| 11 | interiors contain no branch vertex and are pairwise disjoint. Equivalently, |
| 12 | *G* contains a subdivision of *H* as a subgraph. |
| 13 | -/ |
| 14 | |
| 15 | set_option autoImplicit false |
| 16 | |
| 17 | namespace Lax68.GraphTopologicalMinors |
| 18 | |
| 19 | open GraphMinors |
| 20 | |
| 21 | def walkInterior {V : Type*} {G : SimpleGraph V} {a b : V} |
| 22 | (P : G.Walk a b) : Set V := |
| 23 | {x | x ∈ P.support ∧ x ≠ a ∧ x ≠ b} |
| 24 | |
| 25 | structure TopologicalMinorModel {W V : Type*} |
| 26 | (H : SimpleGraph W) (G : SimpleGraph V) where |
| 27 | branch : W ↪ V |
| 28 | route : |
| 29 | ∀ {a b : W}, H.Adj a b → |
| 30 | G.Walk (branch a) (branch b) |
| 31 | route_isPath : |
| 32 | ∀ {a b : W} (h : H.Adj a b), |
| 33 | (route h).IsPath |
| 34 | branch_avoids_interiors : |
| 35 | ∀ {a b : W} (h : H.Adj a b) (w : W), |
| 36 | branch w ∉ walkInterior (route h) |
| 37 | route_interiors_disjoint : |
| 38 | ∀ {a b c d : W} |
| 39 | (hab : H.Adj a b) (hcd : H.Adj c d), |
| 40 | ¬ ((a = c ∧ b = d) ∨ (a = d ∧ b = c)) → |
| 41 | Disjoint |
| 42 | (walkInterior (route hab)) |
| 43 | (walkInterior (route hcd)) |
| 44 | |
| 45 | def IsTopologicalMinor {W V : Type*} |
| 46 | (H : SimpleGraph W) (G : SimpleGraph V) : Prop := |
| 47 | Nonempty (TopologicalMinorModel H G) |
| 48 | |
| 49 | def IsKuratowskiFree {V : Type*} (G : SimpleGraph V) : Prop := |
| 50 | ¬IsTopologicalMinor K5 G ∧ |
| 51 | ¬IsTopologicalMinor K33 G |
| 52 | |
| 53 | end Lax68.GraphTopologicalMinors |
| 54 |
Builds on
From Mathlib
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments