PrimaryDecomposition - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


PolynomialIdeals

  

PrimaryDecomposition

  

compute a primary decomposition of an ideal

  

PrimeDecomposition

  

compute a prime decomposition of the radical of an ideal

 

Calling Sequence

Parameters

Options

Description

Examples

References

Compatibility

Calling Sequence

PrimaryDecomposition(J, k, removeredundant=b)

PrimeDecomposition(J, k, removeredundant=b)

Parameters

J

-

polynomial ideal

k

-

(optional) field extension

Options

  

removeredundant=b, where b is true or false

  

If removeredundant=true, or just removeredundant is specified, then the resulting decomposition is irredundant, i.e., no component can be omitted without changing the intersection. This is not the case by default, for efficiency reasons.

Description

• 

The PrimaryDecomposition command constructs a finite sequence of primary ideals whose intersection equals the input J.  Likewise the PrimeDecomposition command constructs a sequence of prime ideals whose intersection is equal to the radical of J. Calling PrimeDecomposition(J) is faster but otherwise equivalent to calling PrimaryDecomposition(Radical(J)).

• 

By default, ideals are factored over the domain implied by their coefficients - usually the rationals or the integers mod p.  Additional field extensions can be specified with an optional second argument k, which can be a single RootOf or radical, or a list or set of RootOfs and radicals.

• 

The output of these commands is not canonical, and may not be unique. However, a Groebner basis is stored for each ideal in the sequence so the Simplify command can be used at no additional cost.

• 

The algorithms employed by these commands require polynomials over a perfect field.  Infinite fields of positive characteristic are not supported. Over finite fields, only zero-dimensional ideals can be handled because the dimension reducing process generates infinite fields.

Examples

withPolynomialIdeals:

Jx2,xy+x

Jx2,xy+x

(1)

PrimeDecompositionJ

x

(2)

PrimaryDecompositionJ

x,x2,y+1

(3)

Jx22,y2+1,z2+2

Jx22,y2+1,z2+2

(4)

PPrimaryDecompositionJ

Px22,y2+1,z2+2,xy+z,x22,y2+1,z2+2,xy+z

(5)

IntersectP

x22,y2+1,z2+2

(6)

KJ,characteristic=5

Kx2+3,y2+1,z2+2

(7)

PPrimaryDecompositionK

Py+2,z+2x,x2+3,y2+1,z2+2,y+2,z+3x,x2+3,y2+1,z2+2,y+3,z+2x,x2+3,y2+1,z2+2,y+3,z+3x,x2+3,y2+1,z2+2

(8)

PSimplifyP

Py+2,z+2x,x2+3,y+2,z+3x,x2+3,y+3,z+2x,x2+3,y+3,z+3x,x2+3

(9)

IntersectP

x2+3,y2+1,z2+2

(10)

Lxz22xy,y2z2x

Lxz2+y2,xz22xy

(11)

PPrimaryDecompositionL

Px,y2,y,z2,z2+4x,z2+2y

(12)

IdealContainmentL,IntersectP,L

true

(13)

Hx2+y21,x+y

Hx+y,x2+y21

(14)

PrimeDecompositionH

x+y,x2+y21

(15)
k=Qalpha=Q2

aliasα=RootOfz22

α

(16)

PPrimeDecompositionH,α

Px+y,2xα,x2+y21,x+y,2x+α,x2+y21

(17)

SimplifyP

2xα,α+2y,2x+α,α+2y

(18)

Redundant components are not removed by default:

PrimaryDecompositionxy,x2+x

x,x,y,y,x+1

(19)

PrimaryDecompositionxy,x2+x,removeredundant

x,y,x+1

(20)

References

  

Gianni, P.; Trager, B.; and Zacharias, G. "Grobner bases and primary decompositions of polynomial ideals." J. Symbolic Comput. Vol. 6, (1988): 149-167.

Compatibility

• 

The PolynomialIdeals[PrimaryDecomposition] and PolynomialIdeals[PrimeDecomposition] commands were updated in Maple 2021.

• 

The removeredundant option was introduced in Maple 2021.

• 

For more information on Maple 2021 changes, see Updates in Maple 2021.

See Also

Groebner[Solve]

PolynomialIdeals

PolynomialIdeals[IdealContainment]

PolynomialIdeals[Intersect]

PolynomialIdeals[IsPrimary]

PolynomialIdeals[IsPrime]

PolynomialIdeals[Radical]

PolynomialIdeals[Simplify]

PolynomialIdeals[ZeroDimensionalDecomposition]