All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

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

Canonical source
Full Lean sourceLean 4
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

Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

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.

physicsquantum field theoryrelativity

Source project: Physlib

Person-level attribution pending.

View proof record