Documentation

Mathlib.Topology.Hom.Open

Continuous open maps #

This file defines bundled continuous open maps.

We use the DFunLike design, so each type of morphisms has a companion typeclass which is meant to be satisfied by itself and all stricter types.

Types of morphisms #

Typeclasses #

structure ContinuousOpenMap (α : Type u_6) (β : Type u_7) [TopologicalSpace α] [TopologicalSpace β] extends C(α, β) :
Type (max u_6 u_7)

The type of continuous open maps from α to β, aka Priestley homomorphisms.

Instances For

    The type of continuous open maps from α to β, aka Priestley homomorphisms.

    Equations
    Instances For
      class ContinuousOpenMapClass (F : Type u_6) (α : outParam (Type u_7)) (β : outParam (Type u_8)) [TopologicalSpace α] [TopologicalSpace β] [FunLike F α β] extends ContinuousMapClass F α β :

      ContinuousOpenMapClass F α β states that F is a type of continuous open maps.

      You should extend this class when you extend ContinuousOpenMap.

      Instances
        instance instCoeTCContinuousOpenMapOfContinuousOpenMapClass {F : Type u_1} {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] [FunLike F α β] [ContinuousOpenMapClass F α β] :
        CoeTC F (α →CO β)
        Equations

        Continuous open maps #

        instance ContinuousOpenMap.instFunLike {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] :
        FunLike (α →CO β) α β
        Equations
        theorem ContinuousOpenMap.toFun_eq_coe {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] {f : α →CO β} :
        f.toFun = f
        @[simp]
        theorem ContinuousOpenMap.coe_toContinuousMap {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) :
        f.toContinuousMap = f

        simp-normal form of toFun_eq_coe.

        theorem ContinuousOpenMap.ext {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] {f g : α →CO β} (h : ∀ (a : α), f a = g a) :
        f = g
        def ContinuousOpenMap.copy {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) (f' : αβ) (h : f' = f) :
        α →CO β

        Copy of a ContinuousOpenMap with a new ContinuousMap equal to the old one. Useful to fix definitional equalities.

        Equations
        • f.copy f' h = { toContinuousMap := f.copy f' h, map_open' := }
        Instances For
          @[simp]
          theorem ContinuousOpenMap.coe_copy {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) (f' : αβ) (h : f' = f) :
          (f.copy f' h) = f'
          theorem ContinuousOpenMap.copy_eq {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) (f' : αβ) (h : f' = f) :
          f.copy f' h = f
          def ContinuousOpenMap.id (α : Type u_2) [TopologicalSpace α] :
          α →CO α

          id as a ContinuousOpenMap.

          Equations
          Instances For
            @[simp]
            theorem ContinuousOpenMap.id_apply {α : Type u_2} [TopologicalSpace α] (a : α) :
            def ContinuousOpenMap.comp {α : Type u_2} {β : Type u_3} {γ : Type u_4} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] (f : β →CO γ) (g : α →CO β) :
            α →CO γ

            Composition of ContinuousOpenMaps as a ContinuousOpenMap.

            Equations
            • f.comp g = { toContinuousMap := f.comp g.toContinuousMap, map_open' := }
            Instances For
              @[simp]
              theorem ContinuousOpenMap.coe_comp {α : Type u_2} {β : Type u_3} {γ : Type u_4} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] (f : β →CO γ) (g : α →CO β) :
              (f.comp g) = f g
              @[simp]
              theorem ContinuousOpenMap.comp_apply {α : Type u_2} {β : Type u_3} {γ : Type u_4} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] (f : β →CO γ) (g : α →CO β) (a : α) :
              (f.comp g) a = f (g a)
              @[simp]
              theorem ContinuousOpenMap.comp_assoc {α : Type u_2} {β : Type u_3} {γ : Type u_4} {δ : Type u_5} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] [TopologicalSpace δ] (f : γ →CO δ) (g : β →CO γ) (h : α →CO β) :
              (f.comp g).comp h = f.comp (g.comp h)
              @[simp]
              theorem ContinuousOpenMap.comp_id {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) :
              f.comp (ContinuousOpenMap.id α) = f
              @[simp]
              theorem ContinuousOpenMap.id_comp {α : Type u_2} {β : Type u_3} [TopologicalSpace α] [TopologicalSpace β] (f : α →CO β) :
              (ContinuousOpenMap.id β).comp f = f
              @[simp]
              theorem ContinuousOpenMap.cancel_right {α : Type u_2} {β : Type u_3} {γ : Type u_4} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] {g₁ g₂ : β →CO γ} {f : α →CO β} (hf : Function.Surjective f) :
              g₁.comp f = g₂.comp f g₁ = g₂
              @[simp]
              theorem ContinuousOpenMap.cancel_left {α : Type u_2} {β : Type u_3} {γ : Type u_4} [TopologicalSpace α] [TopologicalSpace β] [TopologicalSpace γ] {g : β →CO γ} {f₁ f₂ : α →CO β} (hg : Function.Injective g) :
              g.comp f₁ = g.comp f₂ f₁ = f₂