This file contains additional general constructions around topological spaces which are useful for properties and theorems.
A cozero set is open.
Equations
Instances For
A set is called regular open if it is equal to the interior of its closure.
Equations
- PiBase.IsRegularOpen s = (interior (closure s) = s)
Instances For
A regular open set is open
A point cut point p in a space, is a space such that X \ {p} is disconnected.
Equations
Instances For
The image of a cut point under a homeomorphism is a cut point.
The inseperable component of x : X are the points inseparable to that point.
Equations
- PiBase.InseparableComponent x = {y : X | Inseparable x y}
Instances For
A space is T₀ iff all its inseparable components are trivial.
The inseparable component is irreducible.
A semimetric space
- symmetric_nbhd (x : X) : (nhds x).HasBasis (fun (ε : ℝ) => 0 < ε) (Symmetric.ball x)
Instances
A symmetric space
Instances
Every semimetric space is a symmetric space.
Equations
- PiBase.SemimetricSpace.symmetricSpace X = { toSymmetric := h.toSymmetric, isOpen_iff := ⋯ }
Instances For
A set s : Set X is called injectively path connected,
if for any two point in s there is an injective path in x joining them.
Equations
- PiBase.IsInjPathConnected s = Pairwise fun (x y : X) => x ∈ s → y ∈ s → ∃ (f : Path x y), Function.Injective ⇑f ∧ Set.range ⇑f ⊆ s
Instances For
An injectively path connected set is path connected.
A proposition for when the image of the fundamental group at x : X under
f: X → Y is trivial.
Equations
- PiBase.HasTrivialFundGroupImageAt f x = ((FundamentalGroup.map f x).range = ⊥)