Absolutely convex sets #
A set s
in an commutative monoid E
is called absolutely convex or disked if it is convex and
balanced. The importance of absolutely convex sets comes from the fact that every locally convex
topological vector space has a basis consisting of absolutely convex sets.
Main definitions #
absConvexHull
: the absolutely convex hull of a sets
is the smallest absolutely convex set containings
.gaugeSeminormFamily
: the seminorm family induced by all open absolutely convex neighborhoods of zero.
Main statements #
absConvexHull_eq_convexHull_balancedHull
: when the locally convex space is a module, the absolutely convex hull of a sets
equals the convex hull of the balanced hull ofs
.convexHull_union_neg_eq_absConvexHull
: the convex hull ofs ∪ -s
is the absolute convex hull ofs
.with_gaugeSeminormFamily
: the topology of a locally convex space is induced by the familygaugeSeminormFamily
.
Implementation notes #
Mathlib's definition of Convex
requires the scalars to be an OrderedSemiring
whereas the
definition of Balanced
requires the scalars to be a SeminormedRing
. Mathlib doesn't currently
have a concept of a semi-normed ordered ring, so we define a set as AbsConvex
if it is balanced
over a SeminormedRing
𝕜
and convex over ℝ
, assuming IsScalarTower ℝ 𝕜 E
and
SMulCommClass ℝ 𝕜 E
where required.
Tags #
disks, convex, balanced
A set is absolutely convex if it is balanced and convex. Mathlib's definition of Convex
requires the scalars to be an OrderedSemiring
whereas the definition of Balanced
requires the
scalars to be a SeminormedRing
. Mathlib doesn't currently have a concept of a semi-normed ordered
ring, so we define a set as AbsConvex
if it is balanced over a SeminormedRing
𝕜
and convex
over ℝ
.
Instances For
The absolute convex hull of a set s
is the minimal absolute convex set that includes s
.
Equations
Instances For
Alias of the reverse direction of absConvexHull_eq_self
.
Alias of the reverse direction of absConvexHull_nonempty
.
In general, equality doesn't hold here - e.g. consider s := {(-1, 1), (1, 1)}
in ℝ²
.
The type of absolutely convex open sets.
Instances For
Equations
- AbsConvexOpenSets.instCoeTC 𝕜 E = { coe := Subtype.val }
Equations
- ⋯ = ⋯
The family of seminorms defined by the gauges of absolute convex open sets.
Equations
- gaugeSeminormFamily 𝕜 E s = gaugeSeminorm ⋯ ⋯ ⋯
Instances For
The topology of a locally convex space is induced by the gauge seminorm family.