All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

To Lorentz Group det one

Lorentz.SL2C.toLorentzGroup_det_one

Plain-language statement

The determinant of the image of SL(2, ℂ) in the Lorentz group is one.

Exact Lean statement

lemma toLorentzGroup_det_one (M : SL(2, ℂ)) : det (toLorentzGroup M).val = 1

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma toLorentzGroup_det_one (M : SL(2, ℂ)) : det (toLorentzGroup M).val = 1 :=  let U := M.val.schurTriangulationUnitary  let N := M.val.schurTriangulation.val  have h : M.val = U * N * star U := M.val.schur_triangulation  haveI : Invertible U.val := star U.val, U.property.left, U.property.right  calc det (toLorentzGroup M).val    _ = LinearMap.det (toSelfAdjointMap' M) := LinearMap.det_toMatrix ..    _ = LinearMap.det (toSelfAdjointMap' (U * N * U.val⁻¹)) :=      suffices star U = U.val⁻¹ by rw [h, this]      calc star U.val        _ = star U.val * (U.val * U.val⁻¹) := by simp        _ = star U.val * U.val * U.val⁻¹ := by noncomm_ring        _ = U.val⁻¹ := by simp    _ = LinearMap.det (toSelfAdjointMap' N) := toSelfAdjointMap_similar_det U N    _ = 1 :=      suffices N.det = 1 from toSelfAdjointMap_det_one' M.val.schurTriangulation.property this      calc N.det        _ = det ((U * star U).val * N) := by simp        _ = det (U.val * N * star U.val) := det_mul_right_comm ..        _ = M.val.det := congrArg det h.symm        _ = 1 := M.property
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/SL2C/Basic.lean:263-283

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