Lax57.HouseDichotomy
Restricted set or uniform blockade in a house-free graph
concepts/Lax57/HouseDichotomy.lean · lax-57
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
There is an integer such that, for every , every finite house-free graph has one of two outcomes. Either an induced subgraph on is -restricted and , or has a complete or anticomplete blockade of length , where , whose blocks all have size at least .
This is the denominator-cleared form of Lemma 7.3 of Nguyen, Scott, and Seymour. The structural argument is stated for the house, the complement of the five-vertex path.
Lean source view on GitHub
| 1 | import Lax57.GraphDefinitions |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Restricted set or uniform blockade in a house-free graph |
| 6 | type: theorem |
| 7 | --- |
| 8 | There is an integer such that, for every , every finite |
| 9 | house-free graph has one of two outcomes. Either an induced subgraph on |
| 10 | is -restricted and , or has a complete or |
| 11 | anticomplete blockade of length , where , whose blocks all |
| 12 | have size at least . |
| 13 | |
| 14 | This is the denominator-cleared form of Lemma 7.3 of Nguyen, Scott, and |
| 15 | Seymour. The structural argument is stated for the house, the complement of |
| 16 | the five-vertex path. |
| 17 | -/ |
| 18 | |
| 19 | namespace Lax57.HouseDichotomy |
| 20 | |
| 21 | open Lax57.GraphDefinitions |
| 22 | |
| 23 | universe u |
| 24 | |
| 25 | /-- The structural dichotomy for finite house-free graphs. -/ |
| 26 | axiom house_dichotomy : |
| 27 | ∃ a : ℕ, 1 ≤ a ∧ |
| 28 | ∀ E : ℕ, 3 ≤ E → |
| 29 | ∀ {V : Type u} [Fintype V] [DecidableEq V] (G : SimpleGraph V) |
| 30 | [DecidableRel G.Adj], |
| 31 | IsHouseFree G → |
| 32 | (∃ X : Finset V, |
| 33 | Fintype.card V ≤ E ^ a * X.card ∧ ERestricted G E X) ∨ |
| 34 | HasUniformBlockade G E a |
| 35 | |
| 36 | end Lax57.HouseDichotomy |
| 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