Lax56.VertexRemovalStability
Quantitative vertex-removal Erdős–Simonovits stability for K₆
concepts/Lax56/VertexRemovalStability.lean · lax-56
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
For , a -free graph on at least 20 vertices with more than edges can be made 5-colourable by deleting fewer than vertices. This is the explicit vertex-removal form used in the paper.
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Coloring.VertexColoring |
| 2 | import Mathlib.Combinatorics.SimpleGraph.Extremal.Basic |
| 3 | import Mathlib.Combinatorics.SimpleGraph.Clique |
| 4 | import Mathlib.Data.Real.Basic |
| 5 | |
| 6 | /-! |
| 7 | --- |
| 8 | title: Quantitative vertex-removal Erdős--Simonovits stability for K₆ |
| 9 | type: theorem |
| 10 | --- |
| 11 | For `0 < ε < 1/3750`, a `K₆`-free graph on at least 20 vertices with |
| 12 | more than `ex(m,K₆) - εm²` edges can be made 5-colourable by deleting |
| 13 | fewer than `3500εm` vertices. This is the explicit vertex-removal form used |
| 14 | in the paper. |
| 15 | -/ |
| 16 | |
| 17 | namespace Lax56.VertexRemovalStability |
| 18 | |
| 19 | open SimpleGraph |
| 20 | |
| 21 | /-- The number of (unordered) edges of a finite simple graph. -/ |
| 22 | noncomputable def edgeCount {V : Type*} [Finite V] (G : SimpleGraph V) : ℕ := |
| 23 | Nat.card G.edgeSet |
| 24 | |
| 25 | axiom exists_fiveColorable_delete |
| 26 | {V : Type*} [Fintype V] (G : SimpleGraph V) (eps : ℝ) |
| 27 | (hepsPos : 0 < eps) (hepsSmall : eps < 1 / 3750) |
| 28 | (hcard : 20 ≤ Fintype.card V) (hK6 : G.CliqueFree 6) |
| 29 | (hedges : |
| 30 | (SimpleGraph.extremalNumber (Fintype.card V) (⊤ : SimpleGraph (Fin 6)) : ℝ) - |
| 31 | eps * (Fintype.card V : ℝ) ^ 2 < edgeCount G) : |
| 32 | ∃ Z : Set V, |
| 33 | (Nat.card Z : ℝ) < 3500 * eps * Fintype.card V ∧ |
| 34 | (G.induce Zᶜ).Colorable 5 |
| 35 | |
| 36 | end Lax56.VertexRemovalStability |
| 37 |
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