Nowhere dense classes have subpolynomial weak coloring numbers
Lax199508.NowhereDenseWcol · concepts/Lax199508/NowhereDenseWcol.lean · lax-199508
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
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).
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
Lean source view on GitHub
| 1 | import Lax199508.NowhereDenseClasses |
| 2 | import Lax199508.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 Lax199508.NowhereDenseWcol |
| 33 | |
| 34 | open Lax199508.GraphClasses Lax199508.NowhereDenseClasses Lax199508.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 Lax199508.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.
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments