Compact separated uniform spaces #
THIS FILE IS SYNCHRONIZED WITH MATHLIB4. Any changes to this file require a corresponding PR to mathlib4.
Main statements #
-
compact_space_uniformity
: On a compact uniform space, the topology determines the uniform structure, entourages are exactly the neighborhoods of the diagonal. -
uniform_space_of_compact_t2
: every compact T2 topological structure is induced by a uniform structure. This uniform structure is described in the previous item. -
Heine-Cantor theorem: continuous functions on compact uniform spaces with values in uniform spaces are automatically uniformly continuous. There are several variations, the main one is
compact_space.uniform_continuous_of_continuous
.
Implementation notes #
The construction uniform_space_of_compact_t2
is not declared as an instance, as it would badly
loop.
tags #
uniform space, uniform continuity, compact space
Uniformity on compact spaces #
On a compact uniform space, the topology determines the uniform structure, entourages are exactly the neighborhoods of the diagonal.
On a compact uniform space, the topology determines the uniform structure, entourages are exactly the neighborhoods of the diagonal.
The unique uniform structure inducing a given compact topological structure.
Equations
- uniform_space_of_compact_t2 = {to_topological_space := _inst_3, to_core := {uniformity := nhds_set (set.diagonal γ), refl := _, symm := _, comp := _}, is_open_uniformity := _}
Heine-Cantor theorem #
Heine-Cantor: a continuous function on a compact uniform space is uniformly continuous.
Heine-Cantor: a continuous function on a compact set of a uniform space is uniformly continuous.
If s
is compact and f
is continuous at all points of s
, then f
is
"uniformly continuous at the set s
", i.e. f x
is close to f y
whenever x ∈ s
and y
is
close to x
(even if y
is not itself in s
, so this is a stronger assertion than
uniform_continuous_on s
).
If f
has compact multiplicative support, then f
tends to 1 at infinity.
If f
has compact support, then f
tends to zero at infinity.
A family of functions α → β → γ
tends uniformly to its value at x
if α
is locally compact,
β
is compact and f
is continuous on U × (univ : set β)
for some neighborhood U
of x
.
A continuous family of functions α → β → γ
tends uniformly to its value at x
if α
is
locally compact and β
is compact.
An equicontinuous family of functions defined on a compact uniform space is automatically uniformly equicontinuous.