File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ noncomputable def stateCoeff (A : Tensor G d) (σ : V → Fin d) : ℂ :=
6565def SameState (A B : Tensor G d) : Prop :=
6666 ∀ σ : V → Fin d, stateCoeff A σ = stateCoeff B σ
6767
68+ /-- `SameState` is symmetric: it is equality of all state coefficients. -/
69+ theorem SameState.symm {A B : Tensor G d} (hAB : SameState A B) : SameState B A :=
70+ fun σ => (hAB σ).symm
71+
6872/-- Vertex-wise injectivity: at each vertex `v`, the family of physical vectors
6973`η ↦ A.component v η` (indexed by virtual configurations on the incident edges)
7074is linearly independent in `Fin d → ℂ`.
Original file line number Diff line number Diff line change @@ -683,10 +683,6 @@ theorem edgeInsertedCoeff_injective (B : Tensor G d) (e : Edge G)
683683 simpa using this
684684 rw [hMN, hM'eqN]
685685
686- /-- `SameState` is symmetric: it is equality of all state coefficients. -/
687- theorem SameState.symm {A B : Tensor G d} (hAB : SameState A B) : SameState B A :=
688- fun σ => (hAB σ).symm
689-
690686/-- The transfer map packaged as a `ℂ`-linear map, using additivity and
691687homogeneity of `edgeTransferMatrix`. -/
692688noncomputable def edgeTransferLinearMap (A B : Tensor G d) (e : Edge G)
You can’t perform that action at this time.
0 commit comments