Zulip Chat Archive
Stream: general
Topic: prod name
Patrick Massot (Nov 17 2021 at 14:36):
The map sending y
to (x, y)
is prod.mk x
. Do we have a name for the map sending x
to (x, y)
? I'd like to name a lemma about this map.
Floris van Doorn (Nov 17 2021 at 14:50):
maybe prod_mk_right
and prod_mk_left
? There is docs#set.mk_preimage_prod_left
Eric Wieser (Nov 17 2021 at 15:09):
We also have docs#linear_map.inl and docs#linear_map.inr for when the fixed x or y are 0
Scott Morrison (Nov 17 2021 at 21:22):
For products of categories we use sectl
.
Scott Morrison (Nov 17 2021 at 21:22):
https://leanprover-community.github.io/mathlib_docs/category_theory/products/basic.html
Scott Morrison (Nov 17 2021 at 21:23):
Although this used infrequently enough it is trivial to rename if you pick something else.
Last updated: Dec 20 2023 at 11:08 UTC