Documentation

Mathlib.CategoryTheory.Limits.Indization.ParallelPair

Parallel pairs of natural transformations between ind-objects #

We show that if A and B are ind-objects and f and g are natural transformations between A and B, then there is a small filtered category I such that A, B, f and g are commonly presented by diagrams and natural transformations in I ⥤ C.

References #

structure CategoryTheory.IndParallelPairPresentation {C : Type u₁} [Category.{v₁, u₁} C] {A B : Functor Cᵒᵖ (Type v₁)} (f g : A B) :
Type (max u₁ (v₁ + 1))

Structure containing data exhibiting two parallel natural transformations f and g between presheaves A and B as induced by a natural transformation in a functor category exhibiting A and B as ind-objects.

Instances For
    @[implicit_reducible]
    @[reducible, inline]

    Implementation; see nonempty_indParallelPairPresentation.

    Instances For
      @[reducible, inline]

      Implementation; see nonempty_indParallelPairPresentation.

      Instances For
        @[reducible, inline]

        Implementation; see nonempty_indParallelPairPresentation.

        Instances For
          @[reducible, inline]

          Implementation; see nonempty_indParallelPairPresentation.

          Instances For
            @[reducible, inline]
            noncomputable abbrev CategoryTheory.NonemptyParallelPairPresentationAux.isColimit₁ {C : Type u₁} [Category.{v₁, u₁} C] {A B : Functor Cᵒᵖ (Type v₁)} (f g : A B) (P₁ : Limits.IndObjectPresentation A) (P₂ : Limits.IndObjectPresentation B) :
            Limits.IsColimit { pt := A, ι := ι₁ f g P₁ P₂ }

            Implementation; see nonempty_indParallelPairPresentation.

            Instances For
              @[reducible, inline]

              Implementation; see nonempty_indParallelPairPresentation.

              Instances For
                @[reducible, inline]
                noncomputable abbrev CategoryTheory.NonemptyParallelPairPresentationAux.isColimit₂ {C : Type u₁} [Category.{v₁, u₁} C] {A B : Functor Cᵒᵖ (Type v₁)} (f g : A B) (P₁ : Limits.IndObjectPresentation A) (P₂ : Limits.IndObjectPresentation B) :
                Limits.IsColimit { pt := B, ι := ι₂ f g P₁ P₂ }

                Implementation; see nonempty_indParallelPairPresentation.

                Instances For
                  theorem CategoryTheory.NonemptyParallelPairPresentationAux.hf {C : Type u₁} [Category.{v₁, u₁} C] {A B : Functor Cᵒᵖ (Type v₁)} (f g : A B) (P₁ : Limits.IndObjectPresentation A) (P₂ : Limits.IndObjectPresentation B) :
                  f = (isColimit₁ f g P₁ P₂).map { pt := B, ι := ι₂ f g P₁ P₂ } (Functor.whiskerRight (ϕ f g P₁ P₂) yoneda)
                  theorem CategoryTheory.NonemptyParallelPairPresentationAux.hg {C : Type u₁} [Category.{v₁, u₁} C] {A B : Functor Cᵒᵖ (Type v₁)} (f g : A B) (P₁ : Limits.IndObjectPresentation A) (P₂ : Limits.IndObjectPresentation B) :
                  g = (isColimit₁ f g P₁ P₂).map { pt := B, ι := ι₂ f g P₁ P₂ } (Functor.whiskerRight (ψ f g P₁ P₂) yoneda)

                  Given an IndParallelPairPresentation f g, we can understand the parallel pair (f, g) as the colimit of (P.φ, P.ψ) in Cᵒᵖ ⥤ Type v.

                  Instances For