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

Lax17.ExponentTenCrossbarDichotomy

Exponent-ten crossbar dichotomy

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

    The exponent-ten crossbar theorem: three equal terminal sets and two full linkages yield either a width-g2g^2 crossbar or a minor carrying a large strong path-of-sets system.

    Lean source view on GitHub

    1import Mathlib.Data.Nat.Log
    2import Lax17.Crossbar
    3import Lax17.Degree
    4
    5/-!
    6---
    7title: Exponent-ten crossbar dichotomy
    8type: theorem
    9---
    10The exponent-ten crossbar theorem: three equal terminal sets and two full
    11linkages yield either a width-\(g^2\) crossbar or a minor carrying a large
    12strong path-of-sets system.
    13-/
    14
    15namespace Lax17.ExponentTenCrossbarDichotomy
    16
    17universe u
    18
    19/-- The axiom-free exponent-ten crossbar dichotomy. -/
    20axiom exponentTenCrossbarDichotomy :
    21 ∃ c : ℕ, 0 < c ∧
    22 ∀ {V : Type u} [Fintype V] [DecidableEq V]
    23 (G : SimpleGraph V) {A B X : Finset V} {g κ : ℕ},
    24 2 ≤ g →
    25 Lax17.Crossbar.IsPowerOfTwo g →
    26 A.card = κ → B.card = κ → X.card = κ →
    27 Disjoint A B → Disjoint A X → Disjoint B X →
    28 2 ^ 22 * g ^ 10 * Nat.log 2 g ≤ κ →
    29 (∀ x ∈ X, Lax17.Degree.Exactly G x 1) →
    30 Lax17.Paths.VertexLinkage G A B κ →
    31 Lax17.Paths.VertexLinkage G A X κ →
    32 Nonempty
    33 (Lax17.Crossbar.System
    34 G A B X (g ^ 2)) ∨
    35 ∃ length width : ℕ,
    36 g ^ 2 ≤ c * length ∧
    37 g ^ 2 ≤ c * width ∧
    38 Lax17.Crossbar.HasStrongPathOfSetsMinor
    39 G length width
    40
    41end Lax17.ExponentTenCrossbarDichotomy
    42
    Show Proof

    Used by

    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…