Zulip Chat Archive

Stream: maths

Topic: add_monoid_hom and ordered_embedding


Apurva Nakade (Jun 15 2021 at 16:24):

I have a map f : X ->+ Y and I want to say that f is also an order_embedding.
What's the proper way to say this? Is there some bundled variant of add_monoid_hom_order_embedding?

Apurva Nakade (Jun 15 2021 at 16:27):

Also, there seems to be two different naming conventions for ordered stuff: ordered_... and order_...
Is this on purpose?

Eric Wieser (Jun 15 2021 at 16:42):

I think you have to pick between using an embedding and map_zero / map_add assumptions, or an add_monoid_hom and monotone / injective assumptions

Eric Wieser (Jun 15 2021 at 16:42):

I think you have to pick between using an embedding and map_zero / map_add assumptions, or an add_monoid_hom and monotone / injective assumptions

Eric Wieser (Jun 15 2021 at 16:42):

I think you have to pick between using an embedding and map_zero / map_add assumptions, or an add_monoid_hom and monotone / injective assumptions

Eric Wieser (Jun 15 2021 at 16:42):

I think usually we choose the latter

Apurva Nakade (Jun 15 2021 at 16:54):

Sounds good, thanks!

Eric Wieser (Jun 15 2021 at 17:15):

As an example docs#submonoid.subtype meets all those conditions

Eric Wieser (Jun 15 2021 at 17:15):

With injectivity proved as docs#set_like.coe_injective and monotonicity proved as docs#set_like.coe_mono


Last updated: Dec 20 2023 at 11:08 UTC