Inseparable points in a topological space #
In this file we prove basic properties of the following notions defined elsewhere.
-
Specializes
(notation:x ⤳ y
) : a relation saying that𝓝 x ≤ 𝓝 y
; -
Inseparable
: a relation saying that two points in a topological space have the same neighbourhoods; equivalently, they can't be separated by an open set; -
InseparableSetoid X
: same relation, as aSetoid
; -
SeparationQuotient X
: the quotient ofX
by itsInseparableSetoid
.
We also prove various basic properties of the relation Inseparable
.
Notations #
x ⤳ y
: notation forSpecializes x y
;x ~ᵢ y
is used as a local notation forInseparable x y
;𝓝 x
is the neighbourhoods filternhds x
of a pointx
, defined elsewhere.
Tags #
topological space, separation setoid
Specializes
relation #
A collection of equivalent definitions of x ⤳ y
. The public API is given by iff
lemmas
below.
Alias of the forward direction of specializes_iff_nhds
.
Alias of the forward direction of specializes_iff_pure
.
Alias of the forward direction of specializes_iff_mem_closure
.
Alias of the forward direction of specializes_iff_closure_subset
.
A continuous function is monotone with respect to the specialization preorders on the domain and the codomain.
Inseparable
relation #
Separation quotient #
In this section we define the quotient of a topological space by the Inseparable
relation.
Equations
- instTopologicalSpaceSeparationQuotient X = instTopologicalSpaceQuotient
The natural map from a topological space to its separation quotient.
Equations
- SeparationQuotient.mk = Quotient.mk''
Instances For
Equations
- ⋯ = ⋯
Equations
- SeparationQuotient.instInhabitedSeparationQuotient = { default := SeparationQuotient.mk default }
Equations
- ⋯ = ⋯
Lift a map f : X → α
such that Inseparable x y → f x = f y
to a map
SeparationQuotient X → α
.
Equations
- SeparationQuotient.lift f hf x = Quotient.liftOn' x f hf
Instances For
Lift a map f : X → Y → α
such that Inseparable a b → Inseparable c d → f a c = f b d
to a
map SeparationQuotient X → SeparationQuotient Y → α
.
Equations
- SeparationQuotient.lift₂ f hf x y = Quotient.liftOn₂' x y f hf