Lax17.StrongPathOfSetsFromTreewidth
A strong path-of-sets system from treewidth
concepts/Lax17/StrongPathOfSetsFromTreewidth.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
Sufficiently large treewidth produces a strong path-of-sets system of prescribed length and width.
Lean source view on GitHub
| 1 | import Mathlib.Data.Nat.Log |
| 2 | import Lax17.PathOfSets |
| 3 | import Lax17.Treewidth |
| 4 | |
| 5 | /-! |
| 6 | --- |
| 7 | title: A strong path-of-sets system from treewidth |
| 8 | type: theorem |
| 9 | --- |
| 10 | Sufficiently large treewidth produces a strong path-of-sets system of |
| 11 | prescribed length and width. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax17.StrongPathOfSetsFromTreewidth |
| 15 | |
| 16 | universe u |
| 17 | |
| 18 | /-- Sufficiently large treewidth produces a strong path-of-sets system of |
| 19 | prescribed length and width. -/ |
| 20 | axiom strongPathOfSetsFromTreewidth : |
| 21 | ∃ c d : ℕ, 0 < c ∧ 0 < d ∧ |
| 22 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 23 | (G : SimpleGraph V) {ℓ w k : ℕ}, |
| 24 | 1 < ℓ → |
| 25 | 1 < w → |
| 26 | 1 < k → |
| 27 | k ≤ Lax17.Treewidth.treewidth G → |
| 28 | c * w * ℓ ^ 50 * (Nat.log 2 k) ^ d < k → |
| 29 | Nonempty (Lax17.PathOfSets.StrongSystem G ℓ w) |
| 30 | |
| 31 | end Lax17.StrongPathOfSetsFromTreewidth |
| 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