Lax17.LowDegreeWellLinkedCore
A low-degree well-linked core
concepts/Lax17/LowDegreeWellLinkedCore.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
A sufficiently long strong path-of-sets system has a same-vertex subgraph of maximum degree three in which its first left interface remains polylogarithmically edge-well-linked.
Lean source view on GitHub
| 1 | import Lax17.Degree |
| 2 | import Lax17.Linkedness |
| 3 | import Lax17.PathOfSets |
| 4 | import Mathlib.Data.Nat.Log |
| 5 | |
| 6 | /-! |
| 7 | --- |
| 8 | title: A low-degree well-linked core |
| 9 | type: theorem |
| 10 | --- |
| 11 | A sufficiently long strong path-of-sets system has a same-vertex subgraph of |
| 12 | maximum degree three in which its first left interface remains |
| 13 | polylogarithmically edge-well-linked. |
| 14 | -/ |
| 15 | |
| 16 | namespace Lax17.LowDegreeWellLinkedCore |
| 17 | |
| 18 | universe u |
| 19 | |
| 20 | /-- The local strong-path form of the degree-three sparsifier theorem. -/ |
| 21 | axiom lowDegreeWellLinkedCore : |
| 22 | ∃ cLength logLength cWellLinked logWellLinked : ℕ, |
| 23 | 0 < cLength ∧ 0 < logLength ∧ |
| 24 | 0 < cWellLinked ∧ 0 < logWellLinked ∧ |
| 25 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 26 | {G : SimpleGraph V} {length width : ℕ} |
| 27 | (P : Lax17.PathOfSets.StrongSystem G length width), |
| 28 | 1 < width → |
| 29 | (∃ half : ℕ, width = 2 * half) → |
| 30 | cLength * (Nat.log 2 width) ^ logLength ≤ length → |
| 31 | ∃ H : SimpleGraph V, |
| 32 | H ≤ G ∧ |
| 33 | Lax17.Degree.MaximumAtMost H 3 ∧ |
| 34 | Lax17.Linkedness.ScaledEdgeWellLinked H |
| 35 | (P.left ⟨0, P.length_pos⟩) 1 |
| 36 | (cWellLinked * |
| 37 | (Nat.log 2 width) ^ logWellLinked) |
| 38 | |
| 39 | end Lax17.LowDegreeWellLinkedCore |
| 40 |
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