Zulip Chat Archive
Stream: Is there code for X?
Topic: Product of subgroups
Zhangir Azerbayev (Oct 21 2022 at 03:56):
For subgroups , we can define the product of subgroups . If , then is a subgroup. Is there a convenient way to construct the subgroup instance for in mathlib? I am particularly interested in the special case where either or is normal (which implies the condition).
The pointwise
locale allows us to easily construct H*K
as a set, but I am interested in the subgroup instance. The file group_theory.coset
doesn't seem to contain anything directly useful either.
Junyan Xu (Oct 21 2022 at 04:26):
Junyan Xu (Oct 21 2022 at 04:26):
seems the answer is to just use H ⊔ K
Junyan Xu (Oct 21 2022 at 04:27):
Or if you want the underlying set to be definitionally ↑H * ↑K
, you may use docs#subgroup.copy
Zhangir Azerbayev (Oct 21 2022 at 04:42):
Nice! UsingH ⊔ K
is sufficient for my purposes, but it is good to know about docs#subgroup.copy.
Last updated: Dec 20 2023 at 11:08 UTC