Factor embeddings of the binary step #
The left factor embedding a ↦ a ⊗ 1 as a ∗-algebra hom.
Equations
- M₁.stepInclLeft M₂ = { toAlgHom := Algebra.TensorProduct.includeLeft, map_star' := ⋯ }
Instances For
@[simp]
theorem
CommutingRepetition.StdTracialAlgebra.stepInclLeft_apply
(M₁ M₂ : StdTracialAlgebra)
(a : M₁.A)
:
The right factor embedding b ↦ 1 ⊗ b as a ∗-algebra hom.
Equations
- M₁.stepInclRight M₂ = { toAlgHom := Algebra.TensorProduct.includeRight, map_star' := ⋯ }
Instances For
@[simp]
theorem
CommutingRepetition.StdTracialAlgebra.stepInclRight_apply
(M₁ M₂ : StdTracialAlgebra)
(b : M₂.A)
:
theorem
CommutingRepetition.StdTracialAlgebra.stepIncl_commute
(M₁ M₂ : StdTracialAlgebra)
(a : M₁.A)
(b : M₂.A)
:
Commute ((M₁.stepInclLeft M₂) a) ((M₁.stepInclRight M₂) b)
theorem
CommutingRepetition.StdTracialAlgebra.stepτ_inclLeft_mul_inclRight
(M₁ M₂ : StdTracialAlgebra)
(a : M₁.A)
(b : M₂.A)
:
Iterated powers #
The R-fold tensor power, by iterating the binary step on the
right (junk value N itself at R = 0).
Instances For
noncomputable def
CommutingRepetition.StdTracialAlgebra.tensorPowIncl
(N : StdTracialAlgebra)
(R : ℕ)
:
The factor embeddings of the iterated power: factor k of R+1
factors is the right slot of the outermost step, earlier factors embed
through the left slot.
Equations
- N.tensorPowIncl 0 = Fin.elim0
- N.tensorPowIncl k.succ = Fin.snoc (fun (i : Fin k) => ((N.tensorPow k).stepInclLeft N).comp (N.tensorPowIncl k i)) ((N.tensorPow k).stepInclRight N)
Instances For
@[simp]
@[simp]
theorem
CommutingRepetition.StdTracialAlgebra.tensorPowIncl_castSucc
(N : StdTracialAlgebra)
(k : ℕ)
(i : Fin k)
:
theorem
CommutingRepetition.StdTracialAlgebra.tensorPowIncl_commute
(N : StdTracialAlgebra)
(R : ℕ)
⦃i j : Fin R⦄
:
i ≠ j → ∀ (a b : N.A), Commute ((N.tensorPowIncl R i) a) ((N.tensorPowIncl R j) b)
Images of distinct factors commute.
theorem
CommutingRepetition.StdTracialAlgebra.tensorPow_trace_prod
(N : StdTracialAlgebra)
(R : ℕ)
(f : Fin R → N.A)
:
The ordered-product trace law: the trace of the ordered product of
one element per factor is the product of the factor traces
(06_otqcs.tex, eq amplified-resource, in the consumed form of
TensorPowerData.trace_prod).