Draft — mutable and not usable as a dependency; its citation marks the draft state.

Lax17.LowDegreeWellLinkedCore

A low-degree well-linked core

concepts/Lax17/LowDegreeWellLinkedCore.lean · lax-17

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Concept map

    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A

    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

    1import Lax17.Degree
    2import Lax17.Linkedness
    3import Lax17.PathOfSets
    4import Mathlib.Data.Nat.Log
    5
    6/-!
    7---
    8title: A low-degree well-linked core
    9type: theorem
    10---
    11A sufficiently long strong path-of-sets system has a same-vertex subgraph of
    12maximum degree three in which its first left interface remains
    13polylogarithmically edge-well-linked.
    14-/
    15
    16namespace Lax17.LowDegreeWellLinkedCore
    17
    18universe u
    19
    20/-- The local strong-path form of the degree-three sparsifier theorem. -/
    21axiom 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.left0, P.length_pos⟩) 1
    36 (cWellLinked *
    37 (Nat.log 2 width) ^ logWellLinked)
    38
    39end Lax17.LowDegreeWellLinkedCore
    40
    Show Proof

    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

    Loading discussion…