proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
-
no assumptions
thm✓Lax10.Theorem2
Theorem
Let . If a finite simple graph has chromatic number at least , then it has a -connected subgraph with chromatic number at least .
Lean source view on GitHub
| 1 | import Lax10.ThreeConnectedAndColorable |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Theorem 2 |
| 6 | type: theorem |
| 7 | --- |
| 8 | Let . If a finite simple graph has chromatic number at least |
| 9 | , then it has a -connected subgraph with chromatic number at least |
| 10 | . |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax10.Theorem2 |
| 14 | |
| 15 | universe u |
| 16 | |
| 17 | open Lax10.ThreeConnectedAndColorable |
| 18 | |
| 19 | /-- |
| 20 | If , some -connected subgraph of has chromatic |
| 21 | number at least . |
| 22 | -/ |
| 23 | axiom theorem2 {V : Type u} [Fintype V] [DecidableEq V] |
| 24 | (m : Nat) (G : SimpleGraph V) |
| 25 | (hm : 4 ≤ m) (hchi : ((m + 1 : Nat) : ℕ∞) ≤ G.chromaticNumber) : |
| 26 | ∃ H : G.Subgraph, ThreeConnected H.coe ∧ |
| 27 | (m : ℕ∞) ≤ H.coe.chromaticNumber |
| 28 | |
| 29 | end Lax10.Theorem2 |
| 30 |
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