Homomorphism counts into a disjoint union
Lax871432.DisjointUnionCounts · concepts/Lax871432/DisjointUnionCounts.lean · lax-871432
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Lemma
For a connected simple graph and 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.Connectivity.Connected |
| 2 | import Mathlib.Combinatorics.SimpleGraph.Sum |
| 3 | import Lax871432.HomomorphismCounts |
| 4 | |
| 5 | /-! |
| 6 | --- |
| 7 | title: Homomorphism counts into a disjoint union |
| 8 | type: lemma |
| 9 | --- |
| 10 | For a connected simple graph and simple graphs and , |
| 11 | |
| 12 | where denotes the disjoint union of and . |
| 13 | -/ |
| 14 | |
| 15 | open Lax871432.HomomorphismCounts |
| 16 | |
| 17 | namespace Lax871432.DisjointUnionCounts |
| 18 | |
| 19 | /-- A homomorphism from a connected graph into a disjoint union maps into one of its two |
| 20 | parts. -/ |
| 21 | axiom homCount_sum_right {U V W : Type*} [Finite U] [Finite V] [Finite W] (K : SimpleGraph U) |
| 22 | (hK : K.Connected) (G₁ : SimpleGraph V) (G₂ : SimpleGraph W) : |
| 23 | homCount K (G₁ ⊕g G₂) = homCount K G₁ + homCount K G₂ |
| 24 | |
| 25 | end Lax871432.DisjointUnionCounts |
| 26 |
Builds on
Used by
none
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments