PolynomialIdeals
Add
compute the sum of ideals
Multiply
compute the product of ideals
Quotient
compute the quotient of two ideals
Calling Sequence
Parameters
Description
Examples
Add(J, K, ..., options)
Multiply(J, K, ..., options)
Quotient(J, K, options)
J, K
-
polynomial ideals, polynomials, or list or sets or polynomials
options
(optional) properties of the ideal and polynomial ring of the result
The Add, Multiply, and Quotient commands compute ideal sums, products, and quotients respectively.
Let J=<f1,...,fs> and K=<g1,...,gt> be two polynomial ideals. The ideal sum J+K is the ideal <f1,...,fs,g1,...,gt>. The ideal product J⁢K is the ideal <fi⁢gj:1<=i<=s,1<=j<=t>. The ideal quotient J:K is the set of all polynomials f such that f⁢g∈J for all g in K.
Add and Multiply accept any number of arguments. The set of variables is extended to include the variables of each ideal. If the ideals cannot be put into a common polynomial ring, then an error is produced. Add and Multiply do not make any effort to simplify their results. The Simplify command can be used for this purpose.
The Quotient command accepts exactly two arguments. If both arguments are polynomial ideals, then the set of variables is extended to include the variables of both ideals. If one or more arguments are polynomials f, then the Quotient command takes that to mean f in an appropriate polynomial ring.
with⁡PolynomialIdeals:
J≔x3−1,y2−3
K≔x2−z
S≔Add⁡J,K
S≔x3−1,y2−3,x2−z
IdealInfo:-Variables⁡S
x,y,z
P≔Multiply⁡J,K
P≔x3−1⁢x2−z,y2−3⁢x2−z
IdealInfo:-Variables⁡P
Quotient⁡J,x2+x+1
x−1,y2−3
Q≔Quotient⁡x2−1,x−1,characteristic=2
Q≔x+1
IdealInfo:-Characteristic⁡Q
2
See Also
PolynomialIdeals[IdealInfo]
PolynomialIdeals[Operators]
PolynomialIdeals[PolynomialIdeal]
PolynomialIdeals[Simplify]
Download Help Document