Ask Your Question
1

How can I compute Intersect of Ideals?

asked 2013-06-05 10:31:15 +0200

Neda gravatar image

hello Could you please tell me how can I compute intersect of two or more Ideals? Thank you

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2013-06-05 10:59:42 +0200

tmonteil gravatar image

I am not sure i understand your question, but you may try:

sage: R.<x> = PolynomialRing(QQ, 1) ; R
Multivariate Polynomial Ring in x over Rational Field
sage: I = R.ideal(x^2-1) ; I
Ideal (x^2 - 1) of Multivariate Polynomial Ring in x over Rational Field
sage: J = R.ideal(x^2-2) ; J
Ideal (x^2 - 2) of Multivariate Polynomial Ring in x over Rational Field
sage: I.intersection(J)
Ideal (x^4 - 3*x^2 + 2) of Multivariate Polynomial Ring in x over Rational Field
edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2013-06-05 10:31:15 +0200

Seen: 2,462 times

Last updated: Jun 05 '13