JacobianMatrix - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


RegularChains[MatrixTools]

  

JacobianMatrix

  

Jacobian matrix of a polynomial system modulo a regular chain

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

JacobianMatrix(sys, rc, R)

Parameters

sys

-

system of polynomials in R

rc

-

strongly normalized regular chain

R

-

polynomial ring

Description

• 

The command JacobianMatrix(sys, rc, R) returns the Jacobian matrix of sys modulo the saturated ideal of rc.

• 

This command is part of the RegularChains[MatrixTools] package, so it can be used in the form JacobianMatrix(..) only after executing the command with(RegularChains[MatrixTools]).  However, it can always be accessed through the long form of the command by using RegularChains[MatrixTools][JacobianMatrix](..).

Examples

> 

with⁡RegularChains:

> 

with⁡MatrixTools:

> 

R≔PolynomialRing⁡x,y,z

R≔polynomial_ring

(1)
> 

sys≔x+y+z2−1,x+y2+z−1,x2+y+z−1

sys≔z2+x+y−1,y2+x+z−1,x2+y+z−1

(2)
> 

dec≔Triangularize⁡sys,R

dec≔regular_chain,regular_chain,regular_chain,regular_chain

(3)
> 

map⁡Equations,dec,R

x−z,y−z,z2+2⁢z−1,x,y,z−1,x,y−1,z,x−1,y,z

(4)
> 

seq⁡JacobianMatrix⁡sys,deci,R,i=1..nops⁡dec

112⁢z12⁢z12⁢z11,112101011,110121011,110101211

(5)
> 

with⁡LinearAlgebra:

> 

seq⁡Determinant⁡JacobianMatrix⁡sys,deci,R,i=1..nops⁡dec

−8⁢z3+6⁢z−2,0,0,0

(6)

See Also

Equations

IsStronglyNormalized

LowerEchelonForm

MatrixInverse

MatrixMultiply

MatrixOverChain

MatrixTools

NormalForm

PolynomialRing

RegularChains

Triangularize