Skip to content

Commit

Permalink
feat(analysis/convex/gauge): unit ball of the gauge seminorm (#16413)
Browse files Browse the repository at this point in the history
  • Loading branch information
ADedecker committed Sep 8, 2022
1 parent ed4882b commit 5ebb7d8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/analysis/convex/gauge.lean
Expand Up @@ -389,6 +389,13 @@ lemma gauge_seminorm_lt_one_of_open (hs : is_open s) {x : E} (hx : x ∈ s) :
gauge_seminorm hs₀ hs₁ hs₂ x < 1 :=
gauge_lt_one_of_mem_of_open hs₁ hs₂.zero_mem hs hx

lemma gauge_seminorm_ball_one (hs : is_open s) :
(gauge_seminorm hs₀ hs₁ hs₂).ball 0 1 = s :=
begin
rw seminorm.ball_zero_eq,
exact gauge_lt_one_eq_self_of_open hs₁ hs₂.zero_mem hs
end

end is_R_or_C

/-- Any seminorm arises as the gauge of its unit ball. -/
Expand Down

0 comments on commit 5ebb7d8

Please sign in to comment.