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

Lax10.Fragile

Fragile and m-fragile graphs

concepts/Lax10/Fragile.lean · lax-10

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

    Definition

    An mm-fragile graph is a graph whose 33-connected subgraphs are all (m1)(m - 1)-colorable. A fragile graph is a graph with no 33-connected subgraph.

    Lean source view on GitHub

    1import Lax10.ThreeConnectedAndColorable
    2
    3/-!
    4---
    5title: Fragile and m-fragile graphs
    6type: definition
    7---
    8An mm-fragile graph is a graph whose 33-connected subgraphs are all
    9(m1)(m - 1)-colorable. A fragile graph is a graph with no 33-connected
    10subgraph.
    11-/
    12
    13namespace Lax10.Fragile
    14
    15universe u
    16
    17variable {V : Type u}
    18
    19open Lax10.ThreeConnectedAndColorable
    20
    21/--
    22An mm-fragile graph is one whose 33-connected subgraphs are all
    23(m1)(m - 1)-colorable.
    24-/
    25def MFragile (m : Nat) (G : SimpleGraph V) : Prop :=
    26 ∀ H : G.Subgraph, ThreeConnected H.coe → KColorable (m - 1) H.coe
    27
    28/-- A graph is fragile when none of its subgraphs is 33-connected. -/
    29def HasNoThreeConnectedSubgraph (G : SimpleGraph V) : Prop :=
    30 ∀ H : G.Subgraph, ¬ ThreeConnected H.coe
    31
    32end Lax10.Fragile
    33

    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…