Prod T to Complex
realLorentzTensor.prodT_toComplex
Plain-language statement
The map toComplex commutes with prodT.
Exact Lean statement
lemma prodT_toComplex {n m : ℕ}
{c : Fin n → realLorentzTensor.Color}
{c1 : Fin m → realLorentzTensor.Color}
(t : ℝT(3, c)) (t1 : ℝT(3, c1)) :
toComplex (c := Fin.append c c1) (prodT (S := realLorentzTensor) t t1)
=
prodTColorToComplex (c := c) (c1 := c1)
(toComplex (c := c) t) (toComplex (c := c1) t1)Formal artifact
Lean source
lemma prodT_toComplex {n m : ℕ} {c : Fin n → realLorentzTensor.Color} {c1 : Fin m → realLorentzTensor.Color} (t : ℝT(3, c)) (t1 : ℝT(3, c1)) : toComplex (c := Fin.append c c1) (prodT (S := realLorentzTensor) t t1) = prodTColorToComplex (c := c) (c1 := c1) (toComplex (c := c) t) (toComplex (c := c1) t1) := by -- Double induction on the tensor basis: first over `t`, then over `t1`. The zero, scalar and -- additive cases follow from linearity of `prodT`, `toComplex` and `prodTColorToComplex`. induction t using induction_on_basis with | h b => induction t1 using induction_on_basis with | h b1 => simp [prodTColorToComplex, prodT_pure, permT_pure, Pure.prodP_basisVector, Pure.permP_basisVector, Tensor.basis_apply, toComplex_pure_basisVector, colorToComplex_append, basisIdxCongr_eq_cast] | hzero => simp [prodTColorToComplex] | hsmul r ta hta => simp [map_smul, hta, prodTColorToComplex] | hadd ta tb hta htb => simp [map_add, hta, htb, prodTColorToComplex] | hzero => simp [prodTColorToComplex] | hsmul r ta hta => simp [map_smul, hta, prodTColorToComplex] | hadd ta tb hta htb => simp [map_add, hta, htb, prodTColorToComplex]- Project
- Physlib
- License
- Apache-2.0
- Commit
- dd43e9e65791
- Source
- Physlib/Relativity/Tensors/RealTensor/ToComplex.lean:555-577
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Adiabatic relation log
adiabatic_relation_log
Plain-language statement
Adiabatic relation in logarithmic form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then c * log (Ua/Ub) + log (Va/Vb) = 0.
Source project: Physlib
Person-level attribution pending.
Adiabatic relation Ua Ub Va Vb
adiabatic_relation_UaUbVaVb
Plain-language statement
Adiabatic relation in product form: If S(Ua,Va,N) = S(Ub,Vb,N) with N fixed, then (Ua/Ub)^c * (Va/Vb) = 1.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.