The Jacobian for Vector-Valued Functions
The derivative of a vector-valued function at a point is the Jacobian matrix . Row of this matrix is the gradient (transposed) of the -th component function .
The Jacobian is defined by the best linear approximation property: with error as . The Jacobian is the unique matrix satisfying this.
Computing the Jacobian: fill row with the partial derivatives of with respect to . Entry is .
Formal View
Special cases: gives a row vector (gradient transposed); gives an square matrix whose determinant is the Jacobian determinant.
Interactive Visualization
Matrix-Vector Multiplication
Why This Matters
The Jacobian is the multivariable derivative and appears in the chain rule, change-of-variables, and all first-order analysis of nonlinear maps.
- Backpropagation in neural networks computes Jacobians of layer-wise functions
- Change of variables in integration uses the Jacobian determinant
- Inverse function theorem: a map is locally invertible iff its Jacobian is invertible
Quiz
For , the Jacobian is a matrix of size:
For at the point , the entry of (row 1, col 3) is:
Common Mistakes
- Transposing the Jacobian — rows correspond to output components, columns to input variables.
- Computing instead of .
- Forgetting that the Jacobian is evaluated at a specific point, not a general formula (though the formula is useful).