Continuity in topological spaces #
For topological spaces X
and Y
, a function f : X → Y
and a point x : X
,
ContinuousAt f x
means f
is continuous at x
, and global continuity is
Continuous f
. There is also a version of continuity PContinuous
for
partially defined functions.
Tags #
continuity, continuous function
If f x ∈ s ∈ 𝓝 (f x)
for continuous f
, then f y ∈ s
near x
.
This is essentially Filter.Tendsto.eventually_mem
, but infers in more cases when applied.
If a function f
tends to somewhere other than 𝓝 (f x)
at x
,
then f
is not continuous at x
See also interior_preimage_subset_preimage_interior
.
See note [comp_of_eq lemmas]
A version of Continuous.tendsto
that allows one to specify a simpler form of the limit.
E.g., one can write continuous_exp.tendsto' 0 1 exp_zero
.
If a continuous map f
maps s
to t
, then it maps closure s
to closure t
.
See also IsClosedMap.closure_image_eq_of_continuous
.
If a continuous map f
maps s
to a closed set t
, then it maps closure s
to t
.
Function with dense range #
A surjective map has dense range.
The image of a dense set under a continuous map with dense range is a dense set.
If f
has dense range and s
is an open set in the codomain of f
, then the image of the
preimage of s
under f
is dense in s
.
If a continuous map with dense range maps a dense set to a subset of t
, then t
is a dense
set.
Composition of a continuous map with dense range and a function with dense range has dense range.
Given a function f : X → Y
with dense range and y : Y
, returns some x : X
.
Equations
- hf.some x = Classical.choice ⋯