Antilipschitz functions #
We say that a map f : α → β
between two (extended) metric spaces is
AntilipschitzWith K
, K ≥ 0
, if for all x, y
we have edist x y ≤ K * edist (f x) (f y)
.
For a metric space, the latter inequality is equivalent to dist x y ≤ K * dist (f x) (f y)
.
Implementation notes #
The parameter K
has type ℝ≥0
. This way we avoid conjunction in the definition and have
coercions both to ℝ
and ℝ≥0∞
. We do not require 0 < K
in the definition, mostly because
we do not have a posreal
type.
We say that f : α → β
is AntilipschitzWith K
if for any two points x
, y
we have
edist x y ≤ K * edist (f x) (f y)
.
Instances For
Alias of the reverse direction of antilipschitzWith_iff_le_mul_nndist
.
Alias of the forward direction of antilipschitzWith_iff_le_mul_nndist
.
Alias of the reverse direction of antilipschitzWith_iff_le_mul_dist
.
Alias of the forward direction of antilipschitzWith_iff_le_mul_dist
.
Extract the constant from hf : AntilipschitzWith K f
. This is useful, e.g.,
if K
is given by a long formula, and we want to reuse this value.
Equations
- _hf.k = K
Instances For
Alias of AntilipschitzWith.isUniformInducing
.
Alias of AntilipschitzWith.isUniformEmbedding
.
Alias of AntilipschitzWith.isClosedEmbedding
.
If f : α → β
is 0
-antilipschitz, then α
is a subsingleton
.
The image of a proper space under an expanding onto map is proper.
The preimage of a proper space under a Lipschitz homeomorphism is proper.