Homomorphism counts into a looped graph
Lax871432.LoopedGraphCounts · concepts/Lax871432/LoopedGraphCounts.lean · lax-871432
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
For finite simple graphs and ,
where carries a loop at every vertex and is the contraction quotient of by the edge set .
Concept map
In the paper
- page 7 of this submission's paper
Lean source view on GitHub
| 1 | import Mathlib.Algebra.BigOperators.Ring.Finset |
| 2 | import Lax871432.LoopGraphs |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Homomorphism counts into a looped graph |
| 7 | type: theorem |
| 8 | --- |
| 9 | For finite simple graphs and , |
| 10 | |
| 11 | where carries a loop at every vertex and is the contraction quotient |
| 12 | of by the edge set . |
| 13 | -/ |
| 14 | |
| 15 | open Lax871432.LoopGraphs |
| 16 | |
| 17 | open scoped Lax871432.LoopGraphs |
| 18 | |
| 19 | namespace Lax871432.LoopedGraphCounts |
| 20 | |
| 21 | /-- **Homomorphisms into a looped graph**: a homomorphism from `F` to `G°` is the same thing |
| 22 | as a set `L` of edges of `F`, those it collapses to loops, together with a homomorphism from |
| 23 | the contraction quotient `F ⊘ L` to `G`. -/ |
| 24 | axiom 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 | |
| 30 | end Lax871432.LoopedGraphCounts |
| 31 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments