Open sets #
Summary #
We define the subtype of open sets in a topological space.
Main Definitions #
Bundled open sets #
TopologicalSpace.Opens α
is the type of open subsets of a topological spaceα
.TopologicalSpace.Opens.IsBasis
is a predicate saying that a set ofopens
s form a topological basis.TopologicalSpace.Opens.comap
: preimage of an open set under a continuous map as aFrameHom
.Homeomorph.opensCongr
: order-preserving equivalence between open sets in the domain and the codomain of a homeomorphism.
Bundled open neighborhoods #
TopologicalSpace.OpenNhdsOf x
is the type of open subsets of a topological spaceα
containingx : α
.TopologicalSpace.OpenNhdsOf.comap f x U
is the preimage of open neighborhoodU
off x
underf : C(α, β)
.
Main results #
We define order structures on both opens α
(complete_structure
, frame
) and open_nhds_of x
(OrderTop
, DistribLattice
).
TODO #
- Rename
TopologicalSpace.Opens
toOpen
? - Port the
auto_cases
tactic version (as a plugin if the portedauto_cases
will allow plugins).
The type of open subsets of a topological space.
- carrier : Set α
The underlying set of a bundled
TopologicalSpace.Opens
object. - is_open' : IsOpen self.carrier
The
TopologicalSpace.Opens.carrier _
is an open set.
Instances For
Equations
- TopologicalSpace.Opens.instSetLikeOpens = { coe := TopologicalSpace.Opens.carrier, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
the coercion Opens α → Set α
applied to a pair is the same as taking the first component
See Note [custom simps projection].
Equations
Instances For
The interior of a set, as an element of Opens
.
Equations
- TopologicalSpace.Opens.interior s = { carrier := interior s, is_open' := ⋯ }
Instances For
The galois coinsertion between sets and opens.
Equations
- TopologicalSpace.Opens.gi = { choice := fun (s : Set α) (hs : s ≤ ↑(TopologicalSpace.Opens.interior s)) => { carrier := s, is_open' := ⋯ }, gc := ⋯, u_l_le := ⋯, choice_eq := ⋯ }
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- TopologicalSpace.Opens.instUniqueOpens = { toInhabited := TopologicalSpace.Opens.instInhabitedOpens, uniq := ⋯ }
Equations
- ⋯ = ⋯
Equations
- TopologicalSpace.Opens.instFrameOpens = let __src := inferInstanceAs (CompleteLattice (TopologicalSpace.Opens α)); Order.Frame.mk ⋯
An open set in the indiscrete topology is either empty or the whole space.
Equations
- ⋯ = ⋯
A set of opens α
is a basis if the set of corresponding sets is a topological basis.
Equations
- TopologicalSpace.Opens.IsBasis B = TopologicalSpace.IsTopologicalBasis (SetLike.coe '' B)
Instances For
If α
has a basis consisting of compact opens, then an open set in α
is compact open iff
it is a finite union of some elements in the basis
The preimage of an open set, as an open set.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A homeomorphism induces an order-preserving equivalence on open sets, by taking comaps.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ⋯ = ⋯
The open neighborhoods of a point. See also Opens
or nhds
.
- carrier : Set α
- is_open' : IsOpen self.carrier
- mem' : x ∈ self.carrier
The point
x
belongs to everyU : TopologicalSpace.OpenNhdsOf x
.
Instances For
Equations
- TopologicalSpace.OpenNhdsOf.instSetLikeOpenNhdsOf = { coe := fun (U : TopologicalSpace.OpenNhdsOf x) => ↑U.toOpens, coe_injective' := ⋯ }
Equations
- ⋯ = ⋯
Equations
- TopologicalSpace.OpenNhdsOf.instOrderTopOpenNhdsOfToLEToPreorderInstPartialOrderInstSetLikeOpenNhdsOf = OrderTop.mk ⋯
Equations
- TopologicalSpace.OpenNhdsOf.instInfOpenNhdsOf = { inf := fun (U V : TopologicalSpace.OpenNhdsOf x) => { toOpens := U.toOpens ⊓ V.toOpens, mem' := ⋯ } }
Equations
- TopologicalSpace.OpenNhdsOf.instSupOpenNhdsOf = { sup := fun (U V : TopologicalSpace.OpenNhdsOf x) => { toOpens := U.toOpens ⊔ V.toOpens, mem' := ⋯ } }
Equations
- TopologicalSpace.OpenNhdsOf.instUniqueOpenNhdsOf = { toInhabited := TopologicalSpace.OpenNhdsOf.instInhabitedOpenNhdsOf, uniq := ⋯ }
Equations
- TopologicalSpace.OpenNhdsOf.instDistribLatticeOpenNhdsOf = Function.Injective.distribLattice TopologicalSpace.OpenNhdsOf.toOpens ⋯ ⋯ ⋯
Preimage of an open neighborhood of f x
under a continuous map f
as a LatticeHom
.
Equations
- One or more equations did not get rendered due to their size.