Skip to content

Commit 164715f

Browse files
vasnesterovxroblot
authored andcommitted
chore(Analysis/Analytic): tag ofScalars_norm_eq_mul with simp (leanprover-community#37635)
Tag `ofScalars_norm_eq_mul` with `simp` and remove `@[simp]` from `ofScalars_norm` as it now can be proven using `ofScalars_norm_eq_mul`.
1 parent 51b487c commit 164715f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Mathlib/Analysis/Analytic/OfScalars.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ open scoped Topology NNReal
175175
variable {𝕜 : Type*} (E : Type*) [NontriviallyNormedField 𝕜] [SeminormedRing E]
176176
[NormedAlgebra 𝕜 E] (c : ℕ → 𝕜) (n : ℕ)
177177

178+
@[simp]
178179
theorem ofScalars_norm_eq_mul :
179180
‖ofScalars E c n‖ = ‖c n‖ * ‖ContinuousMultilinearMap.mkPiAlgebraFin 𝕜 n E‖ := by
180181
rw [ofScalars, norm_smul]
@@ -184,9 +185,8 @@ theorem ofScalars_norm_le (hn : n > 0) : ‖ofScalars E c n‖ ≤ ‖c n‖ :=
184185
exact (mul_le_of_le_one_right (norm_nonneg _)
185186
(ContinuousMultilinearMap.norm_mkPiAlgebraFin_le_of_pos hn))
186187

187-
@[simp]
188188
theorem ofScalars_norm [NormOneClass E] : ‖ofScalars E c n‖ = ‖c n‖ := by
189-
simp [ofScalars_norm_eq_mul]
189+
simp
190190

191191
end Seminormed
192192

0 commit comments

Comments
 (0)