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

Lax17.ParallelClusterSplitting

Parallel cluster splitting

concepts/Lax17/ParallelClusterSplitting.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

    Three large linked terminal sets in one cluster can be retained in three pairwise disjoint connected subclusters.

    Lean source view on GitHub

    1import Lax17.PathOfSets
    2import Lax17.Degree
    3
    4/-!
    5---
    6title: Parallel cluster splitting
    7type: theorem
    8---
    9Three large linked terminal sets in one cluster can be retained in three
    10pairwise disjoint connected subclusters.
    11-/
    12
    13namespace Lax17.ParallelClusterSplitting
    14
    15universe u
    16
    17/-- The degree-three cluster-splitting theorem used to create one base/hair
    18pair while retaining linked interfaces of width `w`. -/
    19axiom parallelClusterSplitting :
    20 ∃ c : ℕ, 0 < c ∧
    21 ∀ {V : Type u} [Fintype V] [DecidableEq V]
    22 (G : SimpleGraph V) {C A B : Finset V} {w : ℕ},
    23 0 < w →
    24 Lax17.Degree.MaximumAtMost G 3
    25 Lax17.PathOfSets.IsCluster G C →
    26 A ⊆ C →
    27 B ⊆ C →
    28 A.card = c * w →
    29 B.card = c * w →
    30 Disjoint A B →
    31 Lax17.Linkedness.NodeWellLinkedIn G C A →
    32 Lax17.Linkedness.NodeWellLinkedIn G C B →
    33 Lax17.Linkedness.NodeLinkedIn G C A B →
    34 Nonempty
    35 (Lax17.PathOfSets.HairyClusterSplit
    36 G C A B w)
    37
    38end Lax17.ParallelClusterSplitting
    39
    Show Proof

    Used by

    none

    From Mathlib

    none

    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…