Documentation

Mathlib.Topology.Connected.TotallyDisconnected

Totally disconnected and totally separated topological spaces #

Main definitions #

We define the following properties for sets in a topological space:

For both of these definitions, we also have a class stating that the whole space satisfies that property: TotallyDisconnectedSpace, TotallySeparatedSpace.

def IsTotallyDisconnected {α : Type u} [TopologicalSpace α] (s : Set α) :

A set s is called totally disconnected if every subset t ⊆ s which is preconnected is a subsingleton, ie either empty or a singleton.

Equations
Instances For

    A space is totally disconnected if all of its connected components are singletons.

    Instances
      instance Pi.totallyDisconnectedSpace {α : Type u_3} {β : αType u_4} [(a : α) → TopologicalSpace (β a)] [∀ (a : α), TotallyDisconnectedSpace (β a)] :
      TotallyDisconnectedSpace ((a : α) → β a)
      instance instTotallyDisconnectedSpaceSigma {ι : Type u_1} {X : ιType u_2} [(i : ι) → TopologicalSpace (X i)] [∀ (i : ι), TotallyDisconnectedSpace (X i)] :
      TotallyDisconnectedSpace ((i : ι) × X i)

      A space is totally disconnected iff its connected components are subsingletons.

      A space is totally disconnected iff its connected components are singletons.

      @[simp]

      The image of a connected component in a totally disconnected space is a singleton.

      theorem TotallyDisconnectedSpace.eq_of_continuous {α : Type u} {β : Type v} [TopologicalSpace α] [TopologicalSpace β] [PreconnectedSpace α] [TotallyDisconnectedSpace β] (f : αβ) (hf : Continuous f) (i j : α) :
      f i = f j

      The bijection C(X, Y) ≃ Y when Y is totally disconnected and X is connected.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For
        theorem isTotallyDisconnected_of_image {α : Type u} {β : Type v} [TopologicalSpace α] {s : Set α} [TopologicalSpace β] {f : αβ} (hf : ContinuousOn f s) (hf' : Function.Injective f) (h : IsTotallyDisconnected (f '' s)) :
        def IsTotallySeparated {α : Type u} [TopologicalSpace α] (s : Set α) :

        A set s is called totally separated if any two points of this set can be separated by two disjoint open sets covering s.

        Equations
        Instances For

          A space is totally separated if any two points can be separated by two disjoint open sets covering the whole space.

          Instances
            theorem totallySeparatedSpace_iff_exists_isClopen {α : Type u_3} [TopologicalSpace α] :
            TotallySeparatedSpace α Pairwise fun (x1 x2 : α) => ∃ (U : Set α), IsClopen U x1 U x2 U
            theorem exists_isClopen_of_totally_separated {α : Type u_3} [TopologicalSpace α] [TotallySeparatedSpace α] :
            Pairwise fun (x1 x2 : α) => ∃ (U : Set α), IsClopen U x1 U x2 U
            @[deprecated totallySeparatedSpace_iff_exists_isClopen (since := "2025-04-03")]
            theorem isTotallyDisconnected_of_isClopen_set {X : Type u_3} [TopologicalSpace X] (hX : Pairwise fun (x1 x2 : X) => ∃ (U : Set X), IsClopen U x1 U x2U) :

            Let X be a topological space, and suppose that for all distinct x,y ∈ X, there is some clopen set U such that x ∈ U and y ∉ U. Then X is totally disconnected.

            The lift to connectedComponents α of a continuous map from α to a totally disconnected space

            Equations
            Instances For
              theorem connectedComponents_lift_unique' {α : Type u} [TopologicalSpace α] {β : Sort u_3} {g₁ g₂ : ConnectedComponents αβ} (hg : g₁ ConnectedComponents.mk = g₂ ConnectedComponents.mk) :
              g₁ = g₂

              Functoriality of connectedComponents

              Equations
              Instances For
                theorem IsPreconnected.constant {α : Type u} [TopologicalSpace α] {Y : Type u_3} [TopologicalSpace Y] [DiscreteTopology Y] {s : Set α} (hs : IsPreconnected s) {f : αY} (hf : ContinuousOn f s) {x y : α} (hx : x s) (hy : y s) :
                f x = f y

                A preconnected set s has the property that every map to a discrete space that is continuous on s is constant on s

                theorem PreconnectedSpace.constant {α : Type u} [TopologicalSpace α] {Y : Type u_3} [TopologicalSpace Y] [DiscreteTopology Y] (hp : PreconnectedSpace α) {f : αY} (hf : Continuous f) {x y : α} :
                f x = f y

                A PreconnectedSpace version of isPreconnected.constant

                theorem IsPreconnected.constant_of_mapsTo {α : Type u} [TopologicalSpace α] {S : Set α} (hS : IsPreconnected S) {β : Type u_3} [TopologicalSpace β] {T : Set β} [DiscreteTopology T] {f : αβ} (hc : ContinuousOn f S) (hTm : Set.MapsTo f S T) {x y : α} (hx : x S) (hy : y S) :
                f x = f y

                Refinement of IsPreconnected.constant only assuming the map factors through a discrete subset of the target.

                theorem IsPreconnected.eqOn_const_of_mapsTo {α : Type u} [TopologicalSpace α] {S : Set α} (hS : IsPreconnected S) {β : Type u_3} [TopologicalSpace β] {T : Set β} [DiscreteTopology T] {f : αβ} (hc : ContinuousOn f S) (hTm : Set.MapsTo f S T) (hne : T.Nonempty) :
                yT, Set.EqOn f (Function.const α y) S

                A version of IsPreconnected.constant_of_mapsTo that assumes that the codomain is nonempty and proves that f is equal to const α y on S for some y ∈ T.