All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Exp is Orthochronous

lorentzAlgebra.exp_isOrthochronous

Plain-language statement

The exponential of an element of the Lorentz algebra is orthochronous.

Exact Lean statement

theorem exp_isOrthochronous (A : lorentzAlgebra) :
    LorentzGroup.IsOrthochronous ⟨NormedSpace.exp A.1, exp_mem_lorentzGroup A⟩

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem exp_isOrthochronous (A : lorentzAlgebra) :    LorentzGroup.IsOrthochronous NormedSpace.exp A.1, exp_mem_lorentzGroup A := by  -- The Lie algebra is a vector space, so there is a path from 0 to A.  let γ : Path (0 : lorentzAlgebra) A :=  { toFun := fun t => t.val • A,    continuous_toFun := by      exact Continuous.smul continuous_subtype_val continuous_const,    source' := by simp [zero_smul],    target' := by simp [one_smul] }  let exp_γ : Path (1 : LorentzGroup 3) NormedSpace.exp A.1, exp_mem_lorentzGroup A :=  { toFun := fun t => NormedSpace.exp (γ t).val, exp_mem_lorentzGroup (γ t),    continuous_toFun := by      apply Continuous.subtype_mk      apply Continuous.comp      · apply NormedSpace.exp_continuous      · exact Continuous.comp continuous_subtype_val (γ.continuous_toFun),    source' := by      ext i j      simp only [γ]      simp [NormedSpace.exp_zero],    target' := by      ext i j      simp only [γ]      simp}  have h_joined : Joined (1 : LorentzGroup 3) NormedSpace.exp A.1, exp_mem_lorentzGroup A :=    exp_γ  have h_connected : NormedSpace.exp A.1, exp_mem_lorentzGroup A  connectedComponent      (1 : LorentzGroup 3) :=    pathComponent_subset_component _ h_joined  rw [ LorentzGroup.isOrthochronous_on_connected_component h_connected]  exact LorentzGroup.id_isOrthochronous
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Relativity/LorentzAlgebra/ExponentialMap.lean:142-172

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