Skip to content

Commit cd71411

Browse files
committed
feat(Analysis/Lp): simp lemma for LinearMap.det and toLpLin (leanprover-community#36661)
Analog to [LinearMap.det_toLin'](https://leanprover-community.github.io/mathlib4_docs/Mathlib/LinearAlgebra/Determinant.html#LinearMap.det_toLin')
1 parent b8caa95 commit cd71411

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Mathlib/Analysis/Normed/Lp/Matrix.lean

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Authors: Eric Wieser
77
module
88

99
public import Mathlib.Analysis.Normed.Lp.PiLp
10+
public import Mathlib.LinearAlgebra.Determinant
1011

1112
/-!
1213
# Matrices are isomorphic with linear maps between Lp spaces
@@ -87,3 +88,8 @@ theorem toLpLin_symm_pow (A : Module.End R (WithLp p (n → R))) (k : ℕ) :
8788
map_pow (toLpLinAlgEquiv p).symm A k
8889

8990
end Matrix
91+
92+
@[simp]
93+
theorem LinearMap.det_toLpLin {ι R : Type*} [Fintype ι] [DecidableEq ι] [CommRing R] (p : ℝ≥0∞)
94+
(m : Matrix ι ι R) : (m.toLpLin p p).det = m.det := by
95+
simp [Matrix.toLpLin_eq_toLin]

0 commit comments

Comments
 (0)