Zulip Chat Archive

Stream: Is there code for X?

Topic: submodule of a submodule


Scott Morrison (May 21 2021 at 06:39):

import algebra.module.submodule

example (R M : Type) [ring R] [add_comm_group M] [module R M]
  (A : submodule R M) (B : submodule R A) :
  submodule R M := sorry -- B as a submodule of M?

Johan Commelin (May 21 2021 at 06:45):

Is it something like B.map A.incl?

Kevin Buzzard (May 21 2021 at 06:58):

For subgroups the morphism is A.subtype

Eric Wieser (May 21 2021 at 08:15):

That seems to be the preferred spelling, given how docs#submodule.equiv_subtype_map is stated


Last updated: Dec 20 2023 at 11:08 UTC