Lax12.NowhereDenseWcol
Nowhere dense classes have subpolynomial weak coloring numbers
concepts/Lax12/NowhereDenseWcol.lean · lax-12
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
Every nowhere dense graph class has subpolynomial weak coloring numbers: for every radius r and every ε > 0 there is a constant c such that every subgraph H of a member, on m vertices, satisfies wcol_r(H) ≤ c · m^ε.
This is Theorem 3.4 of Chapter 2 of the source lecture notes (2019/20 edition).
Lean source view on GitHub
| 1 | import Lax12.NowhereDenseClasses |
| 2 | import Lax12.ColoringNumbers |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Nowhere dense classes have subpolynomial weak coloring numbers |
| 7 | type: theorem |
| 8 | --- |
| 9 | Every nowhere dense graph class has subpolynomial weak coloring |
| 10 | numbers: for every radius *r* and every ε > 0 there is a constant *c* |
| 11 | such that every subgraph *H* of a member, on *m* vertices, satisfies |
| 12 | wcol_r(*H*) ≤ *c* · *m*^ε. |
| 13 | |
| 14 | This is Theorem 3.4 of Chapter 2 of the source lecture notes (2019/20 |
| 15 | edition). |
| 16 | |
| 17 | # Formalization notes |
| 18 | |
| 19 | The hypothesis is the shallow-minor definition of the nowhere dense |
| 20 | concept; the conclusion is the shared predicate `HasSubpolynomialWcol` |
| 21 | of the coloring-number concept. The notes state the bound for the |
| 22 | members of the class only, whereas the predicate used here demands it |
| 23 | uniformly for all subgraphs of members; the two are equivalent, because |
| 24 | the subgraphs of the members of a nowhere dense class again form a |
| 25 | nowhere dense class, and the subgraph-uniform form is what downstream |
| 26 | localization arguments consume. This is the headline of the submission |
| 27 | and is the composition of the four preceding theorem concepts: |
| 28 | subpolynomial shallow-minor density, the admissibility bound, and the |
| 29 | two links of the coloring-number chain. |
| 30 | -/ |
| 31 | |
| 32 | namespace Lax12.NowhereDenseWcol |
| 33 | |
| 34 | open Lax12.GraphClasses Lax12.NowhereDenseClasses Lax12.ColoringNumbers |
| 35 | |
| 36 | /-- Nowhere dense graph classes have subpolynomial weak coloring |
| 37 | numbers. -/ |
| 38 | axiom hasSubpolynomialWcol_of_nowhereDense |
| 39 | (C : GraphClass) (h : NowhereDense C) : |
| 40 | HasSubpolynomialWcol C |
| 41 | |
| 42 | end Lax12.NowhereDenseWcol |
| 43 |
Formalization notes
The hypothesis is the shallow-minor definition of the nowhere dense concept; the conclusion is the shared predicate of the coloring-number concept. The notes state the bound for the members of the class only, whereas the predicate used here demands it uniformly for all subgraphs of members; the two are equivalent, because the subgraphs of the members of a nowhere dense class again form a nowhere dense class, and the subgraph-uniform form is what downstream localization arguments consume. This is the headline of the submission and is the composition of the four preceding theorem concepts: subpolynomial shallow-minor density, the admissibility bound, and the two links of the coloring-number chain.
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