Zulip Chat Archive

Stream: Is there code for X?

Topic: is_iso_ι_of_forall_is_iso


Adam Topaz (Nov 04 2021 at 01:55):

Do we have the following?

import category_theory.limits.shapes.terminal

namespace category_theory.limits

open category_theory

universes v u
variables {J : Type v} [small_category J] {C : Type u} [category.{v} C] (F : J  C)

lemma colimit.is_iso_ι_of_forall_is_iso {j : J} (hj : is_initial j)
  [has_colimit F] [ (a b : J) (f : a  b), is_iso (F.map f)] :
  is_iso (colimit.ι F j) := sorry

end category_theory.limits

Scott Morrison (Nov 04 2021 at 02:18):

I think not.

Adam Topaz (Nov 04 2021 at 02:20):

Ok, I'll open a PR soon


Last updated: Dec 20 2023 at 11:08 UTC