Homomorphism counts from a disjoint union

Lax871432.CoproductCounts · concepts/Lax871432/CoproductCounts.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

    Lemma

    For simple graphs F1F_1, F2F_2 and GG,

    hom(F1+F2,G)=hom(F1,G)hom(F2,G),\hom(F_1 + F_2, G) = \hom(F_1, G) \hom(F_2, G),

    where F1+F2F_1 + F_2 denotes the disjoint union of F1F_1 and F2F_2.

    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 3 of this submission's paper

    Lean source view on GitHub

    1import Mathlib.Combinatorics.SimpleGraph.Sum
    2import Lax871432.HomomorphismCounts
    3
    4/-!
    5---
    6title: Homomorphism counts from a disjoint union
    7type: lemma
    8---
    9For simple graphs F1F_1, F2F_2 and GG,
    10hom(F1+F2,G)=hom(F1,G)hom(F2,G),\hom(F_1 + F_2, G) = \hom(F_1, G) \hom(F_2, G),
    11where F1+F2F_1 + F_2 denotes the disjoint union of F1F_1 and F2F_2.
    12-/
    13
    14open Lax871432.HomomorphismCounts
    15
    16namespace Lax871432.CoproductCounts
    17
    18/-- A homomorphism from a disjoint union is a pair of homomorphisms from its two parts. -/
    19axiom homCount_sum_left {U V W : Type*} [Finite U] [Finite V] [Finite W] (F₁ : SimpleGraph U)
    20 (F₂ : SimpleGraph V) (G : SimpleGraph W) :
    21 homCount (F₁ ⊕g F₂) G = homCount F₁ G * homCount F₂ G
    22
    23end Lax871432.CoproductCounts
    24
    Show Proof

    Discussion

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

    Loading discussion…