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.traceFormal artifact
Lean source
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
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.
Source project: Physlib
Person-level attribution pending.
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.
Source project: Physlib
Person-level attribution pending.
Deriv Within mean Energy Beta eq neg variance
CanonicalEnsemble.derivWithin_meanEnergy_Beta_eq_neg_variance
Plain-language statement
(∂U/∂β) = -Var(E) for finite systems.
Source project: Physlib
Person-level attribution pending.