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

Lax68.Ladders

Ladders

concepts/Lax68/Ladders.lean · lax-68

definition

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 claimOpen claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Definition

    A finite ladder is a nonempty two-row grid: two paths joined by corresponding rungs.

    Lean source view on GitHub

    1import Mathlib.Combinatorics.SimpleGraph.Hasse
    2
    3/-!
    4---
    5title: Ladders
    6type: definition
    7---
    8A finite ladder is a nonempty two-row grid: two paths joined by corresponding
    9rungs.
    10-/
    11
    12set_option autoImplicit false
    13
    14namespace Lax68.Ladders
    15
    16def HasLadderShape {V : Type*} (G : SimpleGraph V) : Prop :=
    17 ∃ n : ℕ,
    18 0 < n ∧
    19 Nonempty
    20 (G ≃g (SimpleGraph.pathGraph n □ SimpleGraph.pathGraph 2))
    21
    22def IsLadder {V : Type*} (G : SimpleGraph V) : Prop :=
    23 HasLadderShape G
    24
    25end Lax68.Ladders
    26

    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…