Lax57.SparseHouseAcceleration
Sparse-house acceleration
concepts/Lax57/SparseHouseAcceleration.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
For some integer , a house-free graph that is -sparse on a set , where , either becomes -sparse on a subset of size at least , or has a complete or anticomplete -blockade whose blocks have size at least . This is a reciprocal-square form of Lemma 7.2 of Nguyen, Scott, and Seymour.
Lean source view on GitHub
| 1 | import Lax57.GraphDefinitions |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Sparse-house acceleration |
| 6 | type: theorem |
| 7 | --- |
| 8 | For some integer , a house-free graph that is -sparse on a |
| 9 | set , where , either becomes -sparse on a subset of |
| 10 | size at least , or has a complete or anticomplete -blockade |
| 11 | whose blocks have size at least . This is a reciprocal-square |
| 12 | form of Lemma 7.2 of Nguyen, Scott, and Seymour. |
| 13 | -/ |
| 14 | |
| 15 | namespace Lax57.SparseHouseAcceleration |
| 16 | |
| 17 | open Lax57.GraphDefinitions |
| 18 | |
| 19 | universe u |
| 20 | |
| 21 | /-- The sparse-house acceleration step, in reciprocal-square form. -/ |
| 22 | axiom sparse_house_acceleration : |
| 23 | ∃ d : ℕ, 2 ≤ d ∧ |
| 24 | ∀ R : ℕ, 64 ≤ R → |
| 25 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 26 | (G : SimpleGraph V) [DecidableRel G.Adj] (S : Finset V), |
| 27 | IsHouseFree G → ESparse G (R ^ 2) S → |
| 28 | (∃ T : Finset V, T ⊆ S ∧ |
| 29 | S.card ≤ R ^ (32 * d ^ 3) * T.card ∧ |
| 30 | ESparse G (R ^ (2 * d)) T) ∨ |
| 31 | (∃ B : Blockade (V := V) R, |
| 32 | B.IsInside S ∧ B.IsUniform G ∧ |
| 33 | ∀ i : Fin R, |
| 34 | S.card ≤ R ^ (36 * d ^ 3) * (B.block i).card) |
| 35 | |
| 36 | end Lax57.SparseHouseAcceleration |
| 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