Neighborhoods and continuity relative to a subset #
This file defines relative versions
and proves their basic properties, including the relationships between these restricted notions and the corresponding notions for the subtype equipped with the subspace topology.
Notation #
𝓝 x: the filter of neighborhoods of a pointx;𝓟 s: the principal filter of a sets;𝓝[s] x: the filternhdsWithin x sof neighborhoods of a pointxwithin a sets.
nhdsWithin and subtypes #
A function between topological spaces is continuous at a point x₀ within a subset s
if f x tends to f x₀ when x tends to x₀ while staying within s.
Equations
- ContinuousWithinAt f s x = Filter.Tendsto f (nhdsWithin x s) (nhds (f x))
Instances For
If a function is continuous within s at x, then it tends to f x within s by definition.
We register this fact for use with the dot notation, especially to use Filter.Tendsto.comp as
ContinuousWithinAt.comp will have a different meaning.
A function between topological spaces is continuous on a subset s
when it's continuous at every point of s within s.
Equations
- ContinuousOn f s = ∀ (x : α), x ∈ s → ContinuousWithinAt f s x
Instances For
Alias of the forward direction of continuousOn_iff_continuous_restrict.
If a function is continuous on a set for some topologies, then it is continuous on the same set with respect to any finer topology on the source space.
If a function is continuous on a set for some topologies, then it is continuous on the same set with respect to any coarser topology on the target space.
Alias of the reverse direction of continuousWithinAt_insert_self.