Minors of acyclic graphs are acyclic
Lax68.AcyclicMinors · concepts/Lax68/AcyclicMinors.lean · lax-68
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
Every minor of an acyclic graph is acyclic. Consequently, a graph containing a cycle cannot be a minor of a tree.
Concept map
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Acyclic |
| 2 | import Lax68.GraphMinors |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Minors of acyclic graphs are acyclic |
| 7 | type: theorem |
| 8 | --- |
| 9 | Every minor of an acyclic graph is acyclic. Consequently, a graph containing |
| 10 | a cycle cannot be a minor of a tree. |
| 11 | -/ |
| 12 | |
| 13 | set_option autoImplicit false |
| 14 | |
| 15 | namespace Lax68.AcyclicMinors |
| 16 | |
| 17 | /-- Taking a graph minor preserves acyclicity. -/ |
| 18 | axiom acyclic_minor {V W : Type*} {G : SimpleGraph V} {H : SimpleGraph W} : |
| 19 | G.IsAcyclic → Lax68.GraphMinors.IsMinor H G → H.IsAcyclic |
| 20 | |
| 21 | end Lax68.AcyclicMinors |
| 22 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments