Order connected components of a set #
In this file we define Set.ordConnectedComponent s x
to be the set of y
such that
Set.uIcc x y ⊆ s
and prove some basic facts about this definition. At the moment of writing,
this construction is used only to prove that any linear order with order topology is a T₅ space,
so we only add API needed for this lemma.
Order-connected component of a point x
in a set s
. It is defined as the set of y
such that
Set.uIcc x y ⊆ s
. Note that it is empty if and only if x ∉ s
.
Instances For
Equations
- ⋯ = ⋯
A set that intersects each order connected component of a set by a single point. Defined as the
range of Set.ordConnectedProj s
.
Instances For
Given two sets s t : Set α
, the set Set.orderSeparatingSet s t
is the set of points that
belong both to some Set.ordConnectedComponent tᶜ x
, x ∈ s
, and to some
Set.ordConnectedComponent sᶜ x
, x ∈ t
. In the case of two disjoint closed sets, this is the
union of all open intervals $(a, b)$ such that their endpoints belong to different sets.
Equations
Instances For
An auxiliary neighborhood that will be used in the proof of
OrderTopology.CompletelyNormalSpace
.