Zulip Chat Archive
Stream: Is there code for X?
Topic: is_atomistic submodule
Adam Topaz (Jun 14 2022 at 16:45):
Do we have the following?
import linear_algebra.basic
import order.atoms
variables {K M : Type*} [division_ring K] [add_comm_group M] [module K M]
example : is_atomistic (submodule K M) :=
sorry
(Ping @Yaël Dillies )
I only really care about fields, but I think this should be true for division rings as well?
Yaël Dillies (Jun 14 2022 at 17:58):
It seems like we have no concrete instance of is_atomistic
! That would be great to have.
Yaël Dillies (Jun 14 2022 at 17:59):
but actually we do have it: docs#module.submodule.is_complemented
Adam Topaz (Jun 14 2022 at 18:02):
Aha! So one could use docs#is_atomistic_of_is_complemented
Adam Topaz (Jun 14 2022 at 18:02):
Yaël Dillies said:
but actually we do have it: docs#module.submodule.is_complemented
Over a field...
Adam Topaz (Jun 14 2022 at 18:03):
In any case, it would be useful to have a characterization of the atoms of submodule K V
Adam Topaz (Jun 14 2022 at 18:03):
Ping @Michael Blyth
Yaël Dillies (Jun 14 2022 at 18:04):
#10865 might help
Alex J. Best (Jun 14 2022 at 18:07):
Adam Topaz said:
Yaël Dillies said:
but actually we do have it: docs#module.submodule.is_complemented
Over a field...
Edit: I am wrong and can't read errors
Adam Topaz (Jun 14 2022 at 18:07):
Is there some simple way to get the relationship between the atoms of set
and the atoms of submodule
via spans?
Adam Topaz (Jun 14 2022 at 18:08):
@Alex J. Best this requires field as well docs#submodule.exists_is_compl
Adam Topaz (Jun 14 2022 at 18:09):
But it should be generalizable
Adam Topaz (Jun 14 2022 at 18:10):
e.g. docs#basis.exists_basis already uses division rings, and that's the key IMO
Last updated: Dec 20 2023 at 11:08 UTC