Lax54.MaximumDegreeReduction
Maximum-degree form of Rödl's theorem
concepts/Lax54/MaximumDegreeReduction.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
Lemma 4.3 of the paper, with denominators cleared. For every finite graph and every , there is a positive integer such that every finite induced--free graph contains a set satisfying and, either in or in its complement, for every .
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Copy |
| 2 | import Lax54.GraphDefinitions |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Maximum-degree form of Rödl's theorem |
| 7 | type: theorem |
| 8 | --- |
| 9 | Lemma 4.3 of the paper, with denominators cleared. For every finite graph |
| 10 | and every , there is a positive integer such that every finite |
| 11 | induced--free graph contains a set satisfying |
| 12 | and, either in or in its complement, |
| 13 | for every . |
| 14 | -/ |
| 15 | |
| 16 | namespace Lax54.MaximumDegreeReduction |
| 17 | |
| 18 | open Lax54.GraphDefinitions |
| 19 | open scoped SimpleGraph |
| 20 | |
| 21 | universe u v |
| 22 | |
| 23 | /-- The maximum-degree form of Rödl's theorem used in Section 4. -/ |
| 24 | axiom maximum_degree_reduction : |
| 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 → HasLowDegreeSide G E D |
| 30 | |
| 31 | end Lax54.MaximumDegreeReduction |
| 32 |
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