jacobian R -- calculates the Jacobian matrix of the ring R
jacobian f -- calculates the Jacobian matrix of the matrix f,
which will normally be a matrix with one row.
jacobian I -- compute the matrix of derivatives of the
generators of I w.r.t. all of the variables
i1 : R = ZZ/101[a..d]; |
i2 : I = monomialCurveIdeal(R,{1,3,4}) |
i3 : A = R/I |
i4 : jacobian A |
For a one row matrix, the derivatives w.r.t. all the variables is given
i5 : R = ZZ/101[a..c] |
i6 : p = symmetricPower(2,vars R) |
i7 : jacobian p |
Caveat:
Ways to use jacobian :