Twin-width can be exponential in treewidth
Lax228581.ExponentialSeparation · concepts/Lax228581/ExponentialSeparation.lean · lax-228581
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
For every natural number , there is a finite simple graph whose treewidth and twin-width satisfy
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
Lean source view on GitHub
| 1 | import Lax228581.Treewidth |
| 2 | import Lax228581.TwinWidth |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Twin-width can be exponential in treewidth |
| 7 | type: theorem |
| 8 | --- |
| 9 | For every natural number , there is a finite simple graph whose |
| 10 | treewidth and twin-width satisfy |
| 11 | |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | # Formalization notes |
| 18 | |
| 19 | The graph is quantified over the canonical finite vertex types `Fin n`, |
| 20 | which loses no generality: every finite simple graph is isomorphic to a |
| 21 | graph on some `Fin n`. |
| 22 | -/ |
| 23 | |
| 24 | namespace Lax228581.ExponentialSeparation |
| 25 | |
| 26 | /-- For every `k`, some finite graph has treewidth at most `2 * k + 4` and |
| 27 | twin-width greater than `2 ^ k`. -/ |
| 28 | axiom exists_treewidth_le_and_two_pow_lt_twinWidth (k : ℕ) : |
| 29 | ∃ n : ℕ, ∃ G : SimpleGraph (Fin n), |
| 30 | Lax228581.Treewidth.treewidth G ≤ 2 * k + 4 ∧ |
| 31 | 2 ^ k < Lax228581.TwinWidth.twinWidth G |
| 32 | |
| 33 | end Lax228581.ExponentialSeparation |
| 34 |
Formalization notes
The graph is quantified over the canonical finite vertex types , which loses no generality: every finite simple graph is isomorphic to a graph on some .
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments