Jacobianmatrix
The Jacobian matrix of a vector-valued function f: R^n → R^m at a point x is the m-by-n matrix J_f(x) = [∂f_i/∂x_j]. It provides the best linear approximation to f near x: f(x + h) ≈ f(x) + J_f(x) h. The differential df_x is the linear map h ↦ J_f(x) h.
Notation and relationship to gradient: J_f(x) or Df(x) are common. When m = 1, the Jacobian is a
If m = n, J_f(x) is square and det J_f(x) is the Jacobian determinant. A nonzero determinant implies
Example: Let f: R^2 → R^2 with f(x, y) = (u, v) where u = x^2 − y and v =
Applications include solving nonlinear systems with Newton's method, analysis of dynamical systems, sensitivity analysis, optimization, and