Lax1.ExponentialSeparation
Twin-width can be exponential in treewidth
concepts/Lax1/ExponentialSeparation.lean · Lax1
Theorem
For every , there is a finite simple graph such that $$ \operatorname{tw}(G) \le 2k+4 \quad\text{and}\quad 2^k < \operatorname{tww}(G). $$ Here and are the treewidth and twin-width parameters defined in the two prerequisite concepts.
Lean source
| 1 | import Lax1.Treewidth |
| 2 | import Lax1.TwinWidth |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Twin-width can be exponential in treewidth |
| 7 | type: theorem |
| 8 | --- |
| 9 | For every $k\in\mathbb{N}$, there is a finite simple graph $G$ such that |
| 10 | $$ |
| 11 | \operatorname{tw}(G) \le 2k+4 |
| 12 | \quad\text{and}\quad |
| 13 | 2^k < \operatorname{tww}(G). |
| 14 | $$ |
| 15 | Here $\operatorname{tw}$ and $\operatorname{tww}$ are the treewidth and |
| 16 | twin-width parameters defined in the two prerequisite concepts. |
| 17 | |
| 18 | # Formalization notes |
| 19 | |
| 20 | The graph is quantified over the canonical finite vertex types |
| 21 | $\operatorname{Fin} n$, which loses no generality: every finite simple |
| 22 | graph is isomorphic to a graph on some $\operatorname{Fin} n$. |
| 23 | -/ |
| 24 | |
| 25 | namespace Lax1.ExponentialSeparation |
| 26 | |
| 27 | /-- For every `k`, some finite graph has treewidth at most `2 * k + 4` and |
| 28 | twin-width greater than `2 ^ k`. -/ |
| 29 | axiom twin_width_can_be_exponential_in_treewidth (k : ℕ) : |
| 30 | ∃ n : ℕ, ∃ G : SimpleGraph (Fin n), |
| 31 | Lax1.Treewidth.treewidth G ≤ 2 * k + 4 ∧ |
| 32 | 2 ^ k < Lax1.TwinWidth.twinWidth G |
| 33 | |
| 34 | end Lax1.ExponentialSeparation |
| 35 |
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 .
Imported
Imported by
none
Mathlib imports
none