Lax54.RodlTheorem
Rödl's theorem for induced-subgraph-free graphs
concepts/Lax54/RodlTheorem.lean · lax-54
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
For every finite graph and every positive integer , there is a positive integer such that every finite induced--free graph contains a set satisfying and such that either or its complement has edge density at most . This is the cleared-denominator finite form of Rödl's theorem cited as Theorem 4.1 in the paper.
Lean source view on GitHub
| 1 | import Lax54.GraphDefinitions |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Rödl's theorem for induced-subgraph-free graphs |
| 6 | type: theorem |
| 7 | --- |
| 8 | For every finite graph and every positive integer , there is a positive |
| 9 | integer such that every finite induced--free graph contains a set |
| 10 | satisfying and such that either or its complement |
| 11 | has edge density at most . This is the cleared-denominator finite form of |
| 12 | Rödl's theorem cited as Theorem 4.1 in the paper. |
| 13 | -/ |
| 14 | |
| 15 | open scoped SimpleGraph |
| 16 | |
| 17 | namespace Lax54.RodlTheorem |
| 18 | |
| 19 | open Lax54.GraphDefinitions |
| 20 | |
| 21 | universe u v |
| 22 | |
| 23 | /-- Rödl's theorem, with a reciprocal integer density parameter. -/ |
| 24 | axiom rodl_theorem : |
| 25 | ∀ {W : Type u} [Fintype W] (H : SimpleGraph W) (E : ℕ), |
| 26 | 0 < E → ∃ D : ℕ, 0 < D ∧ |
| 27 | ∀ {V : Type v} [Fintype V] [DecidableEq V] (G : SimpleGraph V) |
| 28 | [DecidableRel G.Adj], |
| 29 | ¬ H ⊴ G → |
| 30 | ∃ X : Finset V, Fintype.card V ≤ D * X.card ∧ |
| 31 | HasSparseSide (G.induce (X : Set V)) E |
| 32 | |
| 33 | end Lax54.RodlTheorem |
| 34 |
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