Lax17.PolynomialGridMinor
Exponent 8 ( Polylogarithmic) Bound for the Grid-Minor Theorem
concepts/Lax17/PolynomialGridMinor.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
There are positive integers and such that every finite simple graph of treewidth at least
contains the square grid as a minor.
Treewidth is defined through finite tree decompositions, and minor containment uses branch sets.
Lean source view on GitHub
| 1 | import Mathlib.Analysis.SpecialFunctions.Log.Base |
| 2 | import Lax17.GridMinor |
| 3 | import Lax17.Treewidth |
| 4 | |
| 5 | /-! |
| 6 | --- |
| 7 | title: Exponent 8 ( Polylogarithmic) Bound for the Grid-Minor Theorem |
| 8 | type: theorem |
| 9 | --- |
| 10 | There are positive integers and such that every finite simple graph |
| 11 | of treewidth at least |
| 12 | |
| 13 | |
| 14 | |
| 15 | contains the square grid as a minor. |
| 16 | |
| 17 | Treewidth is defined through finite tree decompositions, and minor |
| 18 | containment uses branch sets. |
| 19 | -/ |
| 20 | |
| 21 | namespace Lax17.PolynomialGridMinor |
| 22 | |
| 23 | universe u |
| 24 | |
| 25 | /-- Exponent-eight grid-minor bound with a natural-number polylogarithmic |
| 26 | factor. -/ |
| 27 | axiom polynomial_grid_minor_eight_polylog : |
| 28 | ∃ K b : ℕ, 0 < K ∧ 0 < b ∧ |
| 29 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 30 | (G : SimpleGraph V) {g : ℕ}, |
| 31 | 2 ≤ g → |
| 32 | K * g ^ 8 * (Nat.log 2 g) ^ b ≤ |
| 33 | Lax17.Treewidth.treewidth G → |
| 34 | Lax17.GridMinor.ContainsGridMinor G g |
| 35 | |
| 36 | end Lax17.PolynomialGridMinor |
| 37 |
Builds on
Used by
none
From Mathlib
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