Zulip Chat Archive
Stream: maths
Topic: Categories where coproduct injections are mono
Joël Riou (Aug 30 2022 at 14:31):
In the development of split simplicial objects (see #16274, which will be followed by some examples and a study of their skeleta), I need to introduce a class for categories where inclusions like A ⟶ A ⨿ B
are monomorphisms. Would you think mono_coprod_in
be a suitable name?
variables (C : Type*) [category C] [has_finite_coproducts C]
class mono_coprod_in : Prop :=
(mono_coprod_inl' : Π (A B : C), mono (coprod.inl : A ⟶ A ⨿ B))
(This is true for the category of sets, and categories that have zero morphisms.)
Scott Morrison (Sep 14 2022 at 22:36):
@Joël Riou, did you introduce this? (I didn't see this earlier.) I think I would like this definition for something else, too. Perhaps just mono_coprod
suffices as a name, as it's not entirely clear what the _in
is referring to.
Joël Riou (Sep 15 2022 at 07:16):
Ok for mono_coprod
. I have not yet PRed this. I could do it soon, once PR #16444 is merged.
Last updated: Dec 20 2023 at 11:08 UTC