Balanced Core and Balanced Hull #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
Main definitions #
balanced_core
: The largest balanced subset of a sets
.balanced_hull
: The smallest balanced superset of a sets
.
Main statements #
balanced_core_eq_Inter
: Characterization of the balanced core as an intersection over subsets.nhds_basis_closed_balanced
: The closed balanced sets form a basis of the neighborhood filter.
Implementation details #
The balanced core and hull are implemented differently: for the core we take the obvious definition
of the union over all balanced sets that are contained in s
, whereas for the hull, we take the
union over r • s
, for r
the scalars with ‖r‖ ≤ 1
. We show that balanced_hull
has the
defining properties of a hull in balanced.hull_minimal
and subset_balanced_hull
.
For the core we need slightly stronger assumptions to obtain a characterization as an intersection,
this is balanced_core_eq_Inter
.
References #
Tags #
balanced
The largest balanced subset of s
.
Helper definition to prove balanced_core_eq_Inter
The balanced core of t
is maximal in the sense that it contains any balanced subset
s
of t
.
The balanced hull of s
is minimal in the sense that it is contained in any balanced superset
t
of s
.