Documentation

Mathlib.Topology.Homotopy.TopCat.Basic

Homotopies between morphisms in TopCat #

In this file, we define the type TopCat.Homotopy of homotopies between two morphisms in the category TopCat.

@[reducible, inline]
abbrev TopCat.Homotopy {X Y : TopCat} (f g : X Y) :

A homotopy between morphisms in TopCat is a homotopy between the corresponding continuous maps.

Equations
Instances For
    def TopCat.Homotopy.h {X Y : TopCat} {f₀ f₁ : X Y} (H : Homotopy f₀ f₁) :

    The morphism X ⊗ I ⟶ Y that is part of a homotopy between two morphisms in TopCat.

    Equations
    Instances For
      @[simp]
      theorem TopCat.Homotopy.ι₀_h {X Y : TopCat} {f₀ f₁ : X Y} (F : Homotopy f₀ f₁) :
      @[simp]
      theorem TopCat.Homotopy.ι₁_h {X Y : TopCat} {f₀ f₁ : X Y} (F : Homotopy f₀ f₁) :
      @[reducible, inline]
      abbrev TopCat.Homotopy.refl {X Y : TopCat} (f : X Y) :

      The identity homotopy of a morphism f : X ⟶ Y in TopCat.

      Equations
      Instances For
        @[simp]
        theorem TopCat.Homotopy.refl_apply {X Y : TopCat} (f : X Y) (x : unitInterval × X) :
        (refl f) x = (Hom.hom f) x.2
        @[reducible, inline]
        abbrev TopCat.Homotopy.symm {X Y : TopCat} {f₀ f₁ : X Y} (F : Homotopy f₀ f₁) :
        (Hom.hom f₁).Homotopy (Hom.hom f₀)

        The reverse of a homotopy F in TopCat.

        Equations
        Instances For
          @[simp]
          theorem TopCat.Homotopy.symm_apply {X Y : TopCat} {f₀ f₁ : X Y} (F : Homotopy f₀ f₁) (x : unitInterval × X) :
          @[reducible, inline]
          noncomputable abbrev TopCat.Homotopy.trans {X Y : TopCat} {f₀ f₁ f₂ : X Y} (F : Homotopy f₀ f₁) (G : Homotopy f₁ f₂) :
          (Hom.hom f₀).Homotopy (Hom.hom f₂)

          The compositions of homotopies in TopCat.

          Equations
          Instances For
            @[reducible, inline]
            abbrev TopCat.Homotopy.comp {X Y Z : TopCat} {f₀ f₁ : X Y} {g₀ g₁ : Y Z} (G : Homotopy g₀ g₁) (F : Homotopy f₀ f₁) :

            The homotopy between compositions of morphisms in TopCat.

            Equations
            Instances For
              @[simp]
              theorem TopCat.Homotopy.comp_apply {X Y Z : TopCat} {f₀ f₁ : X Y} {g₀ g₁ : Y Z} (G : Homotopy g₀ g₁) (F : Homotopy f₀ f₁) (x : unitInterval × X) :
              (G.comp F) x = G (x.1, F x)