Definition

Jacobi/Derivative Matrix ^definition

Let be a function, expressed as . Then the Jacobi or derivative matrix of is a matrix of dimensions given by:

The determinant of this matrix, is known as the Jacobian.

In some cases, the Jacobian is notated using:

For example, in the simple case of , i.e. , the Jacobi matrix degrades to the gradient vector:

If is a 3D vector field, i.e. we have the Jacobi matrix:

Theorems

#todo inverse of jacobi theorem (lecture 4)

T1: Jacobi Matrix of a composite function is the matrix product of composing Jacobi matrices

Let be a composite function given by where:

  • , where
  • where

That is, we have . Then:

Or we can just directly compute using function composition:

Note

Examples

1: 2D to 3D Jacobi Matrix

Let given by:

Find

2: Function composition with Jacobi matrices

Let and be real functions. Find the Jacobi matrix of

\end{bmatrix} \

&= \begin{bmatrix} 1 & 1 \ 1 & 0 \ 0 & 2v \end{bmatrix} _{(u,v) \mapsto (x^2 + 1, y^2)} \begin{bmatrix} 2x & 0 \ 0 & 2y \end{bmatrix}
= \begin{bmatrix} 1 & 1 \ 1 & 0 \ 0 & 2y^2 \end{bmatrix} \begin{bmatrix} 2x & 0 \ 0 & 2y \end{bmatrix} \ &= \begin{bmatrix} 2x & 2y \ 2x & 0 \ 0 & 4y^3 \end{bmatrix} \end{align}

3: More function composition

Compute at the point :

Applications