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
.
Equations
- Set.ordConnectedComponent s x = {y : α | Set.uIcc x y ⊆ s}
Instances For
Equations
- ⋯ = ⋯
Projection from s : Set α
to α
sending each order connected component of s
to a single
point of this component.
Equations
Instances For
A set that intersects each order connected component of a set by a single point. Defined as the
range of Set.ordConnectedProj s
.
Equations
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
- Set.ordSeparatingSet s t = (⋃ x ∈ s, Set.ordConnectedComponent tᶜ x) ∩ ⋃ x ∈ t, Set.ordConnectedComponent sᶜ x
Instances For
An auxiliary neighborhood that will be used in the proof of OrderTopology.t5Space
.
Equations
- Set.ordT5Nhd s t = ⋃ x ∈ s, Set.ordConnectedComponent (tᶜ ∩ (Set.ordConnectedSection (Set.ordSeparatingSet s t))ᶜ) x