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
8 changes: 8 additions & 0 deletions Mathlib/Analysis/Normed/Group/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,14 @@ theorem mem_closedBall_iff_norm'' : b ∈ closedBall a r ↔ ‖b / a‖ ≤ r :
theorem mem_closedBall_iff_norm''' : b ∈ closedBall a r ↔ ‖a / b‖ ≤ r := by
rw [mem_closedBall', dist_eq_norm_div]

@[to_additive mem_closedBall_iff_nnnorm]
theorem mem_closedBall_iff_nnnorm'' {r : ℝ≥0} : b ∈ closedBall a r ↔ ‖b / a‖₊ ≤ r :=
mem_closedBall_iff_norm''

@[to_additive mem_closedBall_iff_nnnorm']
theorem mem_closedBall_iff_nnnorm''' {r : ℝ≥0} : b ∈ closedBall a r ↔ ‖a / b‖₊ ≤ r :=
mem_closedBall_iff_norm'''

/-- A scaled closed ball is a closed ball. -/
@[to_additive setOf_sub_mem_closedBall_eq_closedBall
/-- A translated closed ball is a closed ball. -/]
Expand Down
Loading