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

Lax68.Triangulations

Triangulations

concepts/Lax68/Triangulations.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 claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Definition

    A triangulation of a graph G is a planar supergraph T on the same vertex set, with at least three vertices, to which no edge can be added while preserving planarity. For a plane embedding this is equivalent to every face of T being bounded by a triangle.

    Lean source view on GitHub

    1import Lax68.Planar
    2
    3/-!
    4---
    5title: Triangulations
    6type: definition
    7---
    8A triangulation of a graph G is a planar supergraph T on the same vertex set,
    9with at least three vertices, to which no edge can be added while preserving
    10planarity. For a plane embedding this is equivalent to every face of T being
    11bounded by a triangle.
    12-/
    13
    14set_option autoImplicit false
    15
    16namespace Lax68.Triangulations
    17
    18def IsTriangulationOf {V : Type*}
    19 (G T : SimpleGraph V) : Prop :=
    20 (∃ a b c : V, a ≠ b ∧ a ≠ c ∧ b ≠ c) ∧
    21 G ≤ T ∧
    22 Planar.IsPlanar T ∧
    23 ∀ H : SimpleGraph V,
    24 T < H →
    25 ¬ Planar.IsPlanar H
    26
    27end Lax68.Triangulations
    28

    Builds on

    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…