First time here? Check out the FAQ!

Ask Your Question
1

Checking if Quotient Rings are Isomorphic

asked 8 years ago

lkumanduri gravatar image

Hey all!

I was wondering if there was a way to check if two quotient polynomial rings were isomorphic to each other in SAGE. In particular I tried this

R.<x,y,z> = PolynomialRing(QQ)

I = R.ideal(x+y+z,x^2,y^2,z^2,x^3,y^3,z^3,x^2y,y^2x,xyz,y^2z,yz^2,xz^2,zx^2)

S = R.quotient_ring(I)

T.<w> = PolynomialRing(QQ)

J = T.ideal(w^3)

P = T.quotient_ring(J)

S.is_isomorphic(P)

But there is no is_isomorphic for Quotient Rings that I could find

Thanks!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 8 years ago

tmonteil gravatar image

It seems indeed that this is not implemented in Sage. If you know some algorithm that do that, it would make a great improvement to Sage !

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 563 times

Last updated: Jul 06 '16