Zulip Chat Archive

Stream: Is there code for X?

Topic: Category theory: mapping cones


Jon Eugster (Mar 18 2025 at 15:58):

Does the statement that G.mapCone c ≅ G.mapCone d from c ≅ d already exist somewhere?

import Mathlib

universe v₁ u₁ w v' v u u'

open CategoryTheory Limits in
def helper
    {J : Type u₁} [Category.{v₁} J]
    {V : Type u'} [Category.{v'} V]
    {C : Type u} [Category.{v} C]
    {F : J  C} {c d : Cone F} {G : C  V} (h : c  d) :
    G.mapCone c  G.mapCone d :=
  sorry

Junyan Xu (Mar 18 2025 at 16:16):

(Cones.functoriality ..).mapIso h

Jon Eugster (Mar 18 2025 at 16:23):

thanks :)


Last updated: May 02 2025 at 03:31 UTC