Macaulay2 » Documentation
Packages » NoetherianOperators :: noetherianOperators(Ideal)
next | previous | forward | backward | up | index | toc

noetherianOperators(Ideal) -- Noetherian operators of a primary ideal

Synopsis

Description

Compute a set of Noetherian operators for the primary ideal I.

i1 : R = QQ[x,y,t];
i2 : I = ideal(x^2, y^2-x*t);

o2 : Ideal of R
i3 : noetherianOperators I

o3 = {| 1 |, | dy |, | tdy^2+2dx |, | tdy^3+6dxdy |}

o3 : List

The optional argument Strategy can be used to choose different algorithms. Each strategy may accept additional optional arguments, see the documentation page for each strategy for details.

Caveat

The behavior is undefined if Q is not primary. For non-primary ideals, use noetherianOperators(Ideal,Ideal)

Ways to use this method: