Lax49.TwinWidthFromMixedMinorNumber
Twin-width is bounded by a function of mixed minor number
concepts/Lax49/TwinWidthFromMixedMinorNumber.lean · lax-49
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
There is a function f : ℕ → ℕ such that every finite simple graph G satisfies tww(G) ≤ f(mmn(G)): a graph whose adjacency matrix admits no large mixed minor in any vertex ordering has bounded twin-width. Twin-width is the parameter of submission Lax48, mixed minor number the parameter of the prerequisite concept.
Lean source view on GitHub
| 1 | import Lax48.TwinWidth |
| 2 | import Lax49.MixedMinorNumber |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Twin-width is bounded by a function of mixed minor number |
| 7 | type: theorem |
| 8 | --- |
| 9 | There is a function *f* : ℕ → ℕ such that every finite simple graph *G* |
| 10 | satisfies tww(*G*) ≤ *f*(mmn(*G*)): a graph whose adjacency matrix admits no |
| 11 | large mixed minor in any vertex ordering has bounded twin-width. Twin-width |
| 12 | is the parameter of submission Lax48, mixed minor number the parameter of the |
| 13 | prerequisite concept. |
| 14 | |
| 15 | # Formalization notes |
| 16 | |
| 17 | The bound is stated over the two parameters themselves, on arbitrary finite |
| 18 | vertex types carrying `Fintype` and `DecidableEq` instances — the signature |
| 19 | both parameters have. Only the existence of a bounding function is claimed: |
| 20 | the known witness is doubly exponential, and its shape is not part of the |
| 21 | result. |
| 22 | -/ |
| 23 | |
| 24 | namespace Lax49.TwinWidthFromMixedMinorNumber |
| 25 | |
| 26 | /-- Twin-width is bounded by a numerical function of mixed minor number. -/ |
| 27 | axiom exists_twinWidth_bound_of_mixedMinorNumber : |
| 28 | ∃ f : ℕ → ℕ, ∀ {V : Type} [Fintype V] [DecidableEq V] |
| 29 | (G : SimpleGraph V), |
| 30 | Lax48.TwinWidth.twinWidth G ≤ f (Lax49.MixedMinorNumber.mixedMinorNumber G) |
| 31 | |
| 32 | end Lax49.TwinWidthFromMixedMinorNumber |
| 33 |
Formalization notes
The bound is stated over the two parameters themselves, on arbitrary finite vertex types carrying and instances — the signature both parameters have. Only the existence of a bounding function is claimed: the known witness is doubly exponential, and its shape is not part of the result.
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