definition
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
An -fragile graph is a graph whose -connected subgraphs are all -colorable. A fragile graph is a graph with no -connected subgraph.
Lean source view on GitHub
| 1 | import Lax10.ThreeConnectedAndColorable |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Fragile and m-fragile graphs |
| 6 | type: definition |
| 7 | --- |
| 8 | An -fragile graph is a graph whose -connected subgraphs are all |
| 9 | -colorable. A fragile graph is a graph with no -connected |
| 10 | subgraph. |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax10.Fragile |
| 14 | |
| 15 | universe u |
| 16 | |
| 17 | variable {V : Type u} |
| 18 | |
| 19 | open Lax10.ThreeConnectedAndColorable |
| 20 | |
| 21 | /-- |
| 22 | An -fragile graph is one whose -connected subgraphs are all |
| 23 | -colorable. |
| 24 | -/ |
| 25 | def MFragile (m : Nat) (G : SimpleGraph V) : Prop := |
| 26 | ∀ H : G.Subgraph, ThreeConnected H.coe → KColorable (m - 1) H.coe |
| 27 | |
| 28 | /-- A graph is fragile when none of its subgraphs is -connected. -/ |
| 29 | def HasNoThreeConnectedSubgraph (G : SimpleGraph V) : Prop := |
| 30 | ∀ H : G.Subgraph, ¬ ThreeConnected H.coe |
| 31 | |
| 32 | end Lax10.Fragile |
| 33 |
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