Homomorphism counts into a looped graph

Lax871432.LoopedGraphCounts · concepts/Lax871432/LoopedGraphCounts.lean · lax-871432

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.

    Natural Language Statement

    Theorem

    For finite simple graphs FF and GG,

    hom(F,G)=LE(F)hom(FL,G),\hom(F, G^\circ) = \sum_{L \subseteq E(F)} \hom(F \oslash L, G),

    where GG^\circ carries a loop at every vertex and FLF \oslash L is the contraction quotient of FF by the edge set LL.

    Concept map
    2 concepts
    100%
    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A
    Evidence

    Each proof establishes this claim relative to its assumptions.

    In the paper

    • page 7 of this submission's paper

    Lean source view on GitHub

    1import Mathlib.Algebra.BigOperators.Ring.Finset
    2import Lax871432.LoopGraphs
    3
    4/-!
    5---
    6title: Homomorphism counts into a looped graph
    7type: theorem
    8---
    9For finite simple graphs FF and GG,
    10hom(F,G)=LE(F)hom(FL,G),\hom(F, G^\circ) = \sum_{L \subseteq E(F)} \hom(F \oslash L, G),
    11where GG^\circ carries a loop at every vertex and FLF \oslash L is the contraction quotient
    12of FF by the edge set LL.
    13-/
    14
    15open Lax871432.LoopGraphs
    16
    17open scoped Lax871432.LoopGraphs
    18
    19namespace Lax871432.LoopedGraphCounts
    20
    21/-- **Homomorphisms into a looped graph**: a homomorphism from `F` to `G°` is the same thing
    22as a set `L` of edges of `F`, those it collapses to loops, together with a homomorphism from
    23the contraction quotient `F ⊘ L` to `G`. -/
    24axiom homCount_looped {V W : Type*} [Finite V] [Finite W] (F : SimpleGraph V)
    25 (G : SimpleGraph W) :
    26 letI : Fintype F.edgeSet := Fintype.ofFinite _
    27 LoopGraph.homCount (toLoopGraph F) (looped G) =
    28 ∑ L : Finset F.edgeSet, LoopGraph.homCount (F ⊘ (edgeSetOf F) L) (toLoopGraph G)
    29
    30end Lax871432.LoopedGraphCounts
    31
    Show Proof

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…