up previous next
GensJacobian    --    set of generators of the Jacobian ideal of a polynomial


Syntax
GensJacobian(Q: RINGELEM): LIST

Description
This function returns the list of generators of the Jacobian ideal of a polynomial Q.

Example
/**/ use QQ[x,y];	
/**/ Q := x^3+2*x*y+3;
/**/ GensJacobian(Q);
[3*x^2 +2*y,  2*x,  x^3 +2*x*y +3]