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

Lax17.SinghLau

Singh–Lau bounded-degree spanning-tree theorem

concepts/Lax17/SinghLau.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 feasible bounded-degree spanning-tree point can be rounded with an additive-one loss in the maximum degree.

    Lean source view on GitHub

    1import Mathlib.Combinatorics.SimpleGraph.Acyclic
    2import Lax17.Degree
    3import Lax17.SpanningTreeRounding
    4
    5/-!
    6---
    7title: Singh--Lau bounded-degree spanning-tree theorem
    8type: theorem
    9---
    10A feasible bounded-degree spanning-tree point can be rounded with an
    11additive-one loss in the maximum degree.
    12-/
    13
    14namespace Lax17.SinghLau
    15
    16universe u
    17
    18/-- Singh--Lau additive-one bounded-degree spanning-tree rounding. -/
    19axiom singhLauBoundedDegreeSpanningTree :
    20 ∀ {V : Type u} [Fintype V] [DecidableEq V]
    21 (G : SimpleGraph V) (B : ℕ),
    22 1 < Fintype.card V →
    23 Lax17.SpanningTreeRounding.FeasiblePoint G B →
    24 ∃ T : SimpleGraph V,
    25 T ≤ G ∧ T.IsTree ∧ Lax17.Degree.MaximumAtMost T (B + 1)
    26
    27end Lax17.SinghLau
    28
    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…