Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Mathlib/Analysis/Normed/Algebra/Exponential.lean
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,18 @@ theorem _root_.Commute.exp [T2Space 𝔸] {x y : 𝔸} (h : Commute x y) :
Commute (exp x) (exp y) :=
h.exp_left.exp_right

theorem _root_.Commute.exp_smul_right [T2Space 𝔸] {x y : 𝔸} (h : Commute x y) (r : 𝕂) :
Commute x (exp (r • y)) :=
(h.smul_right r).exp_right

theorem _root_.Commute.exp_smul_left [T2Space 𝔸] {x y : 𝔸} (h : Commute x y) (r : 𝕂) :
Commute (exp (r • x)) y :=
(h.smul_left r).exp_left

theorem _root_.Commute.exp_smul [T2Space 𝔸] {x y : 𝔸} (h : Commute x y) (r s : 𝕂) :
Commute (exp (r • x)) (exp (s • y)) :=
((h.smul_left r).smul_right s).exp

end TopologicalAlgebra

section TopologicalDivisionAlgebra
Expand Down
Loading