Zulip Chat Archive
Stream: Is there code for X?
Topic: Adjoin_root `f` is a domain for prime `f`
Paul Lezeau (Jan 18 2023 at 22:30):
Do we have any result saying that adjoin_root f
is a domain when f
is prime and R
is a domain?
Paul Lezeau (Jan 18 2023 at 22:31):
I couldn't find anything in ring_theory.adjoin_root
or ring_theory.is_adjoin_root
, where such a result should be
Junyan Xu (Jan 18 2023 at 22:59):
We have docs#ideal.quotient.is_domain_iff_prime and docs#ideal.span_singleton_prime, and docs#adjoin_root is just quotient by the ideal generated by a singleton.
Paul Lezeau (Jan 18 2023 at 23:08):
Yeah that's what I ended up using ! I was just checking in case I had missed it - I was quite surprised we didn't already have that somewhere
Junyan Xu (Jan 18 2023 at 23:11):
This combination comes up in src#weierstrass_curve.coordinate_ring.is_domain as well. So probably a good idea to add it!
Last updated: Dec 20 2023 at 11:08 UTC