Student[MultivariateCalculus]
Jacobian
return the Jacobian of a list of multivariate functions
Calling Sequence
Parameters
Description
Examples
Jacobian([f(x,y,..), g(x,y,..), ..], [x, y, ..], opts)
Jacobian([f(x,y,..), g(x,y,..),..], [x, y, ..] = [a, b, ..], opts)
[f(x, y, ..), g(x, y, ..), ..]
-
list (or Vector) of multivariate algebraic expressions
[x, y, ..]
name; specify the independent variables
a, b, ..
name or real constant; evaluate the Jacobian at the specified point
opts
(optional) equation(s) of the form output=method where method is one of determinant or matrix; specify output options
The Jacobian([f(x,y,...), g(x,y,...), ...], [x,y,...]) calling sequence returns the matrix form of the Jacobian. The calling sequence in the form Jacobian([f(x,y,...), g(x,y,...),...], [x,y,...]=[a,b,..]) returns the matrix form of the Jacobian evaluated at a point specified by [a,b,...]. The dimension of the point must equal the number of independent variables.
Specifying the option output = method returns the Jacobian in the specified form, where method is one of determinant or matrix. The matrix form is the default.
If the output = determinant option is given, then the number of independent variables must equal the number of algebraic expressions.
with⁡StudentMultivariateCalculus:
Jacobian⁡x+y2,x,y
12⁢y
Jacobian⁡x+y2,x,y=1,−1
1−2
Jacobian⁡z⁢x+y−4,z+x−y,z2,x,y,z=1,2,C
C111−11002⁢C
Jacobian⁡z⁢x+y−4,z+x−y,z2,x,y,z=1,2,C,output=determinant
−2⁢C2−2⁢C
Jacobian⁡x,x−y,x,y,output=matrix
101−1
See Also
Student
Download Help Document