Skip to content

Commit b91f9d5

Browse files
committed
rename to norm_map instead of norm_apply to match the other ones
1 parent e8378b1 commit b91f9d5

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Mathlib/Analysis/CStarAlgebra/PositiveLinearFunctional.lean

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ variable {A : Type*} [NonUnitalCStarAlgebra A] [PartialOrder A] [StarOrderedRing
2424

2525
namespace PositiveContinuousLinearMap
2626

27-
theorem norm_apply_le_sqrt_opNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
27+
theorem norm_map_le_sqrt_opNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
2828
‖f x‖ ≤ √‖(f : A →L[ℂ] ℂ)‖ * √‖f (star x * x)‖ := by
2929
have hl := CStarAlgebra.increasingApproximateUnit A
3030
refine le_of_tendsto ((ContinuousAt.tendsto (by fun_prop)).comp (hl.tendsto_mul_right _)).norm ?_
@@ -33,17 +33,17 @@ theorem norm_apply_le_sqrt_opNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
3333
← f.coe_toContinuousLinearMap, f.toContinuousLinearMap.le_opNorm (star e * e),
3434
norm_star_mul_self, he2, he2, one_mul, mul_one]
3535

36-
theorem nnnorm_apply_le_sqrt_opNNNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
36+
theorem nnnorm_map_le_sqrt_opNNNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
3737
‖f x‖₊ ≤ ‖(f : A →L[ℂ] ℂ)‖₊.sqrt * ‖f (star x * x)‖₊.sqrt := by
38-
grw [NNReal.toReal_le]; simp [norm_apply_le_sqrt_opNorm_mul]
38+
grw [NNReal.toReal_le]; simp [norm_map_le_sqrt_opNorm_mul]
3939

40-
theorem norm_apply_sq_le_opNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
40+
theorem norm_map_sq_le_opNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
4141
‖f x‖ ^ 2 ≤ ‖(f : A →L[ℂ] ℂ)‖ * ‖f (star x * x)‖ := by
42-
grw [norm_apply_le_sqrt_opNorm_mul, mul_pow]; simp
42+
grw [norm_map_le_sqrt_opNorm_mul, mul_pow]; simp
4343

44-
theorem nnnorm_apply_sq_le_opNNNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
44+
theorem nnnorm_map_sq_le_opNNNorm_mul (f : A →P[ℂ] ℂ) (x : A) :
4545
‖f x‖₊ ^ 2 ≤ ‖(f : A →L[ℂ] ℂ)‖₊ * ‖f (star x * x)‖₊ :=
46-
norm_apply_sq_le_opNorm_mul _ _
46+
norm_map_sq_le_opNorm_mul _ _
4747

4848
theorem tendsto_nhds_opNorm (f : A →P[ℂ] ℂ) {l : Filter A} (hl : l.IsIncreasingApproximateUnit) :
4949
l.Tendsto (f ·) (𝓝 ‖(f : A →L[ℂ] ℂ)‖) := by

0 commit comments

Comments
 (0)