A determined linear combination determines its constituents
Lax871432.LinearCombinationLemma · concepts/Lax871432/LinearCombinationLemma.lean · lax-871432
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Lemma
Let be a graph isomorphism relaxation preserved under categorical products, let be a finite family of pairwise non-isomorphic simple graphs, and let for every . If determines the linear combination — that is, if implies
— then it determines each constituent separately.
Concept map
In the paper
- page 4 of this submission's paper
Lean source view on GitHub
| 1 | import Mathlib.Algebra.BigOperators.Group.Finset.Basic |
| 2 | import Mathlib.Data.Rat.Defs |
| 3 | import Lax871432.DistinguishingClosure |
| 4 | import Lax871432.GraphFamilies |
| 5 | import Lax871432.PreservationProperties |
| 6 | |
| 7 | /-! |
| 8 | --- |
| 9 | title: A determined linear combination determines its constituents |
| 10 | type: lemma |
| 11 | --- |
| 12 | Let be a graph isomorphism relaxation preserved under categorical products, let |
| 13 | be a finite family of pairwise non-isomorphic simple graphs, and let |
| 14 | for every . If determines the linear combination |
| 15 | — that is, if implies |
| 16 | |
| 17 | — then it determines each constituent separately. |
| 18 | -/ |
| 19 | |
| 20 | open Lax871432.DistinguishingClosure Lax871432.GraphFamilies Lax871432.HomomorphismCounts |
| 21 | open Lax871432.IsomorphismRelaxations Lax871432.PreservationProperties |
| 22 | |
| 23 | namespace Lax871432.LinearCombinationLemma |
| 24 | |
| 25 | /-- A relaxation preserved under categorical products which determines a linear combination of |
| 26 | homomorphism counts, over pairwise non-isomorphic graphs and with nonzero coefficients, |
| 27 | determines each of its constituents. -/ |
| 28 | axiom determines_of_determines_sum (R : GraphIsoRelaxation) (hprod : PreservedUnderCatProd R) |
| 29 | {n : ℕ} {ι : Type} [Fintype ι] (L : GraphFamily n ι) (hL : L.PairwiseNonIso) |
| 30 | (α : ι → ℚ) (hα : ∀ i, α i ≠ 0) |
| 31 | (hdet : ∀ {V W : Type} [Finite V] [Finite W] (G : SimpleGraph V) (H : SimpleGraph W), |
| 32 | R.Rel G H → |
| 33 | ∑ i, α i * (homCount (L.graph i) G : ℚ) = ∑ i, α i * (homCount (L.graph i) H : ℚ)) |
| 34 | (i : ι) : Determines R (L.graph i) |
| 35 | |
| 36 | end Lax871432.LinearCombinationLemma |
| 37 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments