Lax17.NodeWellLinkedSetFromTreewidth
A well-linked set from treewidth
concepts/Lax17/NodeWellLinkedSetFromTreewidth.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
Large treewidth yields a proportionally large node-well-linked set.
Lean source view on GitHub
| 1 | import Lax17.Linkedness |
| 2 | import Lax17.Treewidth |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: A well-linked set from treewidth |
| 7 | type: theorem |
| 8 | --- |
| 9 | Large treewidth yields a proportionally large node-well-linked set. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax17.NodeWellLinkedSetFromTreewidth |
| 13 | |
| 14 | universe u |
| 15 | |
| 16 | /-- Large treewidth yields a large node-well-linked vertex set. -/ |
| 17 | axiom nodeWellLinkedSetFromTreewidth : |
| 18 | ∃ c : ℕ, 0 < c ∧ |
| 19 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 20 | (G : SimpleGraph V) {k : ℕ}, |
| 21 | c * k ≤ Lax17.Treewidth.treewidth G → |
| 22 | ∃ X : Finset V, |
| 23 | k ≤ X.card ∧ |
| 24 | Lax17.Linkedness.NodeWellLinkedIn G Finset.univ X |
| 25 | |
| 26 | end Lax17.NodeWellLinkedSetFromTreewidth |
| 27 |
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