All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Det exp real

Matrix.det_exp_real

Plain-language statement

Lie's trace formula over ℝ: det(exp(A)) = exp(tr(A)) for any real matrix A. This is proved by transferring the result from ℂ using the naturality of polynomial identities.

Exact Lean statement

theorem det_exp_real {n : Type*} [Fintype n] [LinearOrder n]
    (A : Matrix n n ℝ) : (NormedSpace.exp A).det = Real.exp A.trace

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem det_exp_real {n : Type*} [Fintype n] [LinearOrder n]    (A : Matrix n n ) : (NormedSpace.exp A).det = Real.exp A.trace := by  let A_ℂ := A.map (algebraMap  ℂ)  have h_complex : (NormedSpace.exp A_ℂ).det = Complex.exp A_ℂ.trace := by    haveI : IsAlgClosed:= Complex.isAlgClosed    rw [Complex.exp_eq_exp_ℂ,  Matrix.det_exp]  have h_trace_comm : A_ℂ.trace = (algebraMap  ℂ) A.trace := by    simp only [A_ℂ, trace, diag_map, map_sum];rfl  have h_det_comm : (algebraMap  ℂ) ((NormedSpace.exp A).det) = (NormedSpace.exp A_ℂ).det := by    rw [@RingHom.map_det]    rw [ NormedSpace.exp_map_algebraMap]; rfl  rw [ h_det_comm] at h_complex  rw [h_trace_comm] at h_complex  have h_exp_comm : Complex.exp ((algebraMap  ℂ) A.trace) =      (algebraMap  ℂ) (Real.exp A.trace) := by    rw [Complex.coe_algebraMap,  Complex.ofReal_exp]  rw [h_exp_comm] at h_complex  exact Complex.ofReal_injective h_complex
Project
Physlib
License
Apache-2.0
Commit
dd43e9e65791
Source
Physlib/Mathematics/DataStructures/Matrix/LieTrace.lean:261-278

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