Lax10.FragileFourColorable
Graphs without a 3-connected subgraph are 4-colorable
concepts/Lax10/FragileFourColorable.lean · lax-10
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
Every finite simple graph with no -connected subgraph is -colorable.
Lean source view on GitHub
| 1 | import Lax10.Fragile |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Graphs without a 3-connected subgraph are 4-colorable |
| 6 | type: theorem |
| 7 | --- |
| 8 | Every finite simple graph with no -connected subgraph is -colorable. |
| 9 | -/ |
| 10 | |
| 11 | namespace Lax10.FragileFourColorable |
| 12 | |
| 13 | universe u |
| 14 | |
| 15 | open Lax10.ThreeConnectedAndColorable |
| 16 | open Lax10.Fragile |
| 17 | |
| 18 | /-- Every finite simple graph with no -connected subgraph is -colorable. -/ |
| 19 | axiom fragile_four_colorable {V : Type u} [Fintype V] [DecidableEq V] |
| 20 | (G : SimpleGraph V) (hfragile : HasNoThreeConnectedSubgraph G) : |
| 21 | KColorable 4 G |
| 22 | |
| 23 | end Lax10.FragileFourColorable |
| 24 |
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