All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Left Dual Left To Matrix ρ

Fermion.leftDualLeftToMatrix_ρ

Plain-language statement

The group action of SL(2,ℂ) on leftHanded ⊗ dualLeftHanded is equivalent to M.1 * leftDualLeftToMatrix v * (M.1⁻¹).

Exact Lean statement

lemma leftDualLeftToMatrix_ρ (v : (LeftHandedWeyl ⊗[ℂ] DualLeftHandedWeyl)) (M : SL(2,ℂ)) :
    leftDualLeftToMatrix (TensorProduct.map (LeftHandedWeyl.rep M) (DualLeftHandedWeyl.rep M) v) =
    M.1 * leftDualLeftToMatrix v * (M.1⁻¹)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma leftDualLeftToMatrix_ρ (v : (LeftHandedWeyl ⊗[ℂ] DualLeftHandedWeyl)) (M : SL(2,ℂ)) :    leftDualLeftToMatrix (TensorProduct.map (LeftHandedWeyl.rep M) (DualLeftHandedWeyl.rep M) v) =    M.1 * leftDualLeftToMatrix v * (M.1⁻¹) := by  nth_rewrite 1 [leftDualLeftToMatrix]  simp only [LinearEquiv.trans_apply]  trans (LinearEquiv.curry ℂ ℂ (Fin 2) (Fin 2)) ((LinearMap.toMatrix      (LeftHandedWeyl.basis.tensorProduct DualLeftHandedWeyl.basis)        (LeftHandedWeyl.basis.tensorProduct DualLeftHandedWeyl.basis)      (TensorProduct.map (LeftHandedWeyl.rep M) (DualLeftHandedWeyl.rep M)))      *ᵥ ((Finsupp.linearEquivFunOnFinite ℂ ℂ (Fin 2 × Fin 2))      ((LeftHandedWeyl.basis.tensorProduct DualLeftHandedWeyl.basis).repr (v))))  · apply congrArg    have h1 := (LinearMap.toMatrix_mulVec_repr (LeftHandedWeyl.basis.tensorProduct        DualLeftHandedWeyl.basis)      (LeftHandedWeyl.basis.tensorProduct DualLeftHandedWeyl.basis)      (TensorProduct.map (LeftHandedWeyl.rep M) (DualLeftHandedWeyl.rep M)) v)    simp only [coe_linearEquivFunOnFinite]    rw [h1]  rw [TensorProduct.toMatrix_map]  funext i j  change ∑ k, ((kroneckerMap (fun x1 x2 => x1 * x2)        ((LinearMap.toMatrix LeftHandedWeyl.basis LeftHandedWeyl.basis) (LeftHandedWeyl.rep M))        ((LinearMap.toMatrix DualLeftHandedWeyl.basis DualLeftHandedWeyl.basis)          (DualLeftHandedWeyl.rep M)) (i, j) k)        * leftDualLeftToMatrix v k.1 k.2) = _  rw [Fintype.sum_prod_type]  simp_rw [kroneckerMap_apply, Matrix.mul_apply]  have h1 : ∑ x : Fin 2, (∑ x1 : Fin 2, M.1 i x1 * leftDualLeftToMatrix v x1 x) * (M.1⁻¹) x j    = ∑ x : Fin 2, ∑ x1 : Fin 2, (M.1 i x1 * leftDualLeftToMatrix v x1 x) * (M.1⁻¹) x j := by    congr    funext x    rw [Finset.sum_mul]  rw [h1]  rw [Finset.sum_comm]  congr  funext x  congr  funext x1  simp only [LeftHandedWeyl.rep_toMatrix, DualLeftHandedWeyl.rep_toMatrix, transpose_apply]  ring
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/Fermions/Weyl/Two.lean:334-373

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