Zulip Chat Archive
Stream: Is there code for X?
Topic: is_limit for an object
Chris Hughes (Aug 06 2022 at 09:23):
Do we have a version of is_limit X
for when X
is an object and not a cone?
Kevin Buzzard (Aug 06 2022 at 09:27):
So the claim would be that there exists a cone? It would then be quite difficult to say anything about the limit object I guess because you don't have access to any of the maps!
Chris Hughes (Aug 06 2022 at 09:28):
I would expect is_limit X : Type
Kevin Buzzard (Aug 06 2022 at 09:30):
Oh, my mental naming model is is_
for Props. So it's partially bundled limits?
Chris Hughes (Aug 06 2022 at 09:31):
Yes
Markus Himmel (Aug 06 2022 at 09:40):
I don't think we have this right now. I was also thinking about this because I will need something like this soon for ind-objects and pro-objects. My plan was to just bundle together a limit cone and an isomorphism between the cone point and X
.
Adam Topaz (Aug 06 2022 at 15:19):
A cone is "just" a morphism of functors from the constant functor associated to X
. You could just write is_limit (cone.mk X e)
where e
is your nat. trans.
Adam Topaz (Aug 06 2022 at 15:20):
A while ago I suggested making something like this into a class, but @Bhavik Mehta thought it was a bad idea. I'm on mobile now, so I can't dig up that old thread. Maybe someone else can find it?
Markus Himmel (Aug 06 2022 at 15:29):
Ah, of course, is_limit (cone.mk X e)
is a much better approach.
Stuart Presnell (Aug 06 2022 at 15:39):
Was that this thread?
Adam Topaz (Aug 06 2022 at 15:42):
Yes!
Last updated: Dec 20 2023 at 11:08 UTC