Zulip Chat Archive

Stream: Is there code for X?

Topic: Localization of localization


Andrew Yang (Nov 24 2021 at 09:23):

Do we have results about the localization of a localization? Something like

import ring_theory.localization

variables (R : Type*) [comm_ring R] (M : submonoid R) (S : Type*) [comm_ring S] [algebra R S]
variables [is_localization M S] (N : submonoid S) (T : Type*) [comm_ring T] [algebra S T]
variables [is_localization N T] [algebra R T] [is_scalar_tower R S T]

example : is_localization ((N  M.map (algebra_map R S)).comap (algebra_map R S).to_monoid_hom) T := sorry

Anne Baanen (Nov 24 2021 at 09:40):

I don't think so, at least I'm sure that we didn't a couple months ago and I haven't seen anything similar in the commit log.

Johan Commelin (Nov 24 2021 at 09:42):

That submonoid doesn't look like fun to work with.

Johan Commelin (Nov 24 2021 at 09:43):

It might be best to abstract it away as soon as possible

Andrew Yang (Nov 24 2021 at 14:51):

#10456
Though I'm not that well-versed in the localization library to give a concise proof.
Any golfing opportunities?


Last updated: Dec 20 2023 at 11:08 UTC