'Exact fixed-round grid-minor theorem'
Lax17.FixedRoundGridMinor · concepts/Lax17/FixedRoundGridMinor.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
For every integer , let be the least natural number such that . There are positive integers and , depending only on , such that treewidth at least forces a grid minor.
This division-free natural-number theorem is the fixed-round combinatorial core used by the exponent- endpoint.
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
Lean source view on GitHub
| 1 | import Mathlib.Data.Nat.Log |
| 2 | import Lax17.GridMinor |
| 3 | import Lax17.PowerRoot |
| 4 | import Lax17.Treewidth |
| 5 | |
| 6 | /-! |
| 7 | --- |
| 8 | title: 'Exact fixed-round grid-minor theorem' |
| 9 | type: theorem |
| 10 | --- |
| 11 | For every integer , let be the least natural number |
| 12 | such that . There are positive integers and |
| 13 | , depending only on , such that treewidth at least |
| 14 | forces a grid minor. |
| 15 | |
| 16 | This division-free natural-number theorem is the fixed-round combinatorial |
| 17 | core used by the exponent- endpoint. |
| 18 | -/ |
| 19 | |
| 20 | namespace Lax17.FixedRoundGridMinor |
| 21 | |
| 22 | universe u |
| 23 | |
| 24 | /-- Exact natural-number theorem obtained from recursive slicing |
| 25 | rounds. The transparent root relation determines the factor `rho`. -/ |
| 26 | axiom polynomial_grid_minor_fixed_t : |
| 27 | ∀ t : ℕ, 2 ≤ t → |
| 28 | ∃ K b : ℕ, 0 < K ∧ 0 < b ∧ |
| 29 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 30 | (G : SimpleGraph V) {g rho : ℕ}, |
| 31 | 2 ≤ g → |
| 32 | Lax17.PowerRoot.IsCeilingPowerRoot t g rho → |
| 33 | K * g ^ 8 * rho * (Nat.log 2 g) ^ b ≤ |
| 34 | Lax17.Treewidth.treewidth G → |
| 35 | Lax17.GridMinor.ContainsGridMinor G g |
| 36 | |
| 37 | end Lax17.FixedRoundGridMinor |
| 38 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments