Homomorphism counts from a disjoint union
Lax871432.CoproductCounts · concepts/Lax871432/CoproductCounts.lean · lax-871432
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Lemma
For simple graphs , and ,
where denotes the disjoint union of and .
Concept map
In the paper
- page 3 of this submission's paper
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Sum |
| 2 | import Lax871432.HomomorphismCounts |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Homomorphism counts from a disjoint union |
| 7 | type: lemma |
| 8 | --- |
| 9 | For simple graphs , and , |
| 10 | |
| 11 | where denotes the disjoint union of and . |
| 12 | -/ |
| 13 | |
| 14 | open Lax871432.HomomorphismCounts |
| 15 | |
| 16 | namespace Lax871432.CoproductCounts |
| 17 | |
| 18 | /-- A homomorphism from a disjoint union is a pair of homomorphisms from its two parts. -/ |
| 19 | axiom 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 | |
| 23 | end Lax871432.CoproductCounts |
| 24 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments