Lax49.MixedMinorNumberFromTwinWidth
Mixed minor number is bounded by a function of twin-width
concepts/Lax49/MixedMinorNumberFromTwinWidth.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 g : ℕ → ℕ such that every finite simple graph G satisfies mmn(G) ≤ g(tww(G)): a graph of bounded twin-width admits a vertex ordering whose adjacency matrix has no large mixed minor. 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: Mixed minor number is bounded by a function of twin-width |
| 7 | type: theorem |
| 8 | --- |
| 9 | There is a function *g* : ℕ → ℕ such that every finite simple graph *G* |
| 10 | satisfies mmn(*G*) ≤ *g*(tww(*G*)): a graph of bounded twin-width admits a |
| 11 | vertex ordering whose adjacency matrix has no large mixed minor. 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 for this direction is linear. |
| 21 | -/ |
| 22 | |
| 23 | namespace Lax49.MixedMinorNumberFromTwinWidth |
| 24 | |
| 25 | /-- Mixed minor number is bounded by a numerical function of twin-width. -/ |
| 26 | axiom exists_mixedMinorNumber_bound_of_twinWidth : |
| 27 | ∃ g : ℕ → ℕ, ∀ {V : Type} [Fintype V] [DecidableEq V] |
| 28 | (G : SimpleGraph V), |
| 29 | Lax49.MixedMinorNumber.mixedMinorNumber G ≤ g (Lax48.TwinWidth.twinWidth G) |
| 30 | |
| 31 | end Lax49.MixedMinorNumberFromTwinWidth |
| 32 |
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 for this direction is linear.
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