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

Lax68.GraphMinors

Graph minors

concepts/Lax68/GraphMinors.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 graph H is a minor of a graph G when the vertices of H can be represented by pairwise disjoint connected branch sets in G, with an edge joining the corresponding branch sets for every edge of H.

    Lean source view on GitHub

    1import Mathlib.Combinatorics.SimpleGraph.Connectivity.Connected
    2
    3/-!
    4---
    5title: Graph minors
    6type: definition
    7---
    8A graph *H* is a minor of a graph *G* when the vertices of *H* can be
    9represented by pairwise disjoint connected branch sets in *G*, with an edge
    10joining the corresponding branch sets for every edge of *H*.
    11-/
    12
    13set_option autoImplicit false
    14
    15namespace Lax68.GraphMinors
    16
    17structure MinorModel {W V : Type*}
    18 (H : SimpleGraph W) (G : SimpleGraph V) where
    19 branchSet : W → Set V
    20 connected : ∀ w, (G.induce (branchSet w)).Connected
    21 disjoint :
    22 ∀ {u v}, u ≠ v →
    23 Disjoint (branchSet u) (branchSet v)
    24 adjacent :
    25 ∀ {u v}, H.Adj u v →
    26 ∃ x ∈ branchSet u, ∃ y ∈ branchSet v, G.Adj x y
    27
    28def IsMinor {W V : Type*}
    29 (H : SimpleGraph W) (G : SimpleGraph V) : Prop :=
    30 Nonempty (MinorModel H G)
    31
    32abbrev K5 : SimpleGraph (Fin 5) :=
    33 SimpleGraph.completeGraph (Fin 5)
    34
    35abbrev K33 : SimpleGraph (Fin 3 ⊕ Fin 3) :=
    36 completeBipartiteGraph (Fin 3) (Fin 3)
    37
    38end Lax68.GraphMinors
    39

    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…