Catalog.Sparsity.AdmBoundByTopGrad
Lemma
Let \(\operatorname{adm}_r\) be as in Definition ColoringNumbers and \(\widetilde{\nabla}_d\) as in Definition ShallowTopologicalMinor.
For every \(r \in \mathbb{N}\) and graph \(G\): \[\operatorname{adm}_r(G) \leq 1 + 6r\left(\lceil \widetilde{\nabla}_{r-1}(G) \rceil\right)^3.\]
Review notes
The proof constructs a vertex ordering by a greedy procedure (always removing the vertex with smallest \(b_r\)) and argues by contradiction: if admissibility is too large, the path families can be combined with an independent set in the auxiliary graph \(H\) to build a depth-\((r-1)\) topological minor that is too dense, contradicting \(\widetilde{\nabla}_{r-1}(G) = d\).
The cube in \(d^3\) comes from: \(d\) contributes to the size of \(K\) (internal vertices), to the edge count of \(H\) (bounding \(|I|\) via a \((2d+1)\)-coloring), and to the final density comparison.
Lean encoding: reformulation.
The source states \(\operatorname{adm}_r(G) \leq 1 + 6r \lceil \widetilde{\nabla}_{r-1}(G) \rceil^3\). The contract avoids defining the topological grad \(\widetilde{\nabla}\) as a supremum over types and instead takes an explicit integer bound \(d\) with a hypothesis: \[\forall H,\; H \preccurlyeq^{\mathrm{top}}_{r-1} G \implies |E(H)| \leq d \cdot |V(H)| \quad \Longrightarrow \quad \exists\, \sigma,\; \operatorname{adm}_r(G,\sigma) \leq 1 + 6rd^3.\] Setting \(d = \lceil \widetilde{\nabla}_{r-1}(G) \rceil\) recovers the source statement exactly. The hypothesis-based form is more directly usable downstream.
The result is existential over orderings (\(\exists\;\texttt{ord}\)) rather than using a graph-level \(\operatorname{adm}_r(G)\).
Catalog/Sparsity/AdmBoundByTopGrad/Contract.lean (full)
| 1 | import Catalog.Sparsity.ColoringNumbers.Contract |
| 2 | import Catalog.Sparsity.Admissibility.Contract |
| 3 | import Catalog.Sparsity.ShallowTopologicalMinor.Contract |
| 4 | import Mathlib.Combinatorics.SimpleGraph.Finite |
| 5 | |
| 6 | open Catalog.Sparsity.ColoringNumbers |
| 7 | open Catalog.Sparsity.Admissibility |
| 8 | open Catalog.Sparsity.ShallowTopologicalMinor |
| 9 | |
| 10 | namespace Catalog.Sparsity.AdmBoundByTopGrad |
| 11 | |
| 12 | /-- Lemma 3.2/ch2: the r-admissibility is bounded by the cube of any upper |
| 13 | bound `d` on the edge density of depth-(r-1) topological minors. |
| 14 | |
| 15 | The proof constructs a greedy ordering achieving |
| 16 | adm_r(G,σ) ≤ 1 + 6r · d³. This is equivalent to the source statement |
| 17 | adm_r(G) ≤ 1 + 6r · ⌈∇̃_{r-1}(G)⌉³ when `d = ⌈∇̃_{r-1}(G)⌉`. -/ |
| 18 | axiom adm_le_of_topGrad_bound |
| 19 | {V : Type} [DecidableEq V] [Fintype V] |
| 20 | (G : SimpleGraph V) (r d : ℕ) |
| 21 | (hd : ∀ {W : Type} [DecidableEq W] [Fintype W] |
| 22 | (H : SimpleGraph W) [DecidableRel H.Adj], |
| 23 | IsShallowTopologicalMinor H G (r - 1) → |
| 24 | H.edgeFinset.card ≤ d * Fintype.card W) : |
| 25 | ∃ (ord : LinearOrder V), |
| 26 | letI := ord; adm G r ≤ 1 + 6 * r * d ^ 3 |
| 27 | |
| 28 | end Catalog.Sparsity.AdmBoundByTopGrad |
| 29 |