The Jacobian

Overview


The Jacobian is a matrix that simplifies some statements in multi-variable calculus.

A multi-variable function is a function that has multiple inputs, as in
{% f= f(x_1,x_2,...,x_n) %}

Jacobian


The matrix representation of the total derviative is called the Jacobian and is calculated as follows:
{% \frac{\partial{\vec{f}}}{\partial{\vec{x}}} =\begin{bmatrix} \frac{\partial{f_1}}{\partial{x_1}} & \frac{\partial{f_1}}{\partial{x_2}} & ... & \frac{\partial{f_1}}{\partial{x_n}} \\ \frac{\partial{f_2}}{\partial{x_1}} & \frac{\partial{f_2}}{\partial{x_2}} & ... & \frac{\partial{f_2}}{\partial{x_n}} \\ ... \\ \frac{\partial{f_m}}{\partial{x_1}} & \frac{\partial{f_m}}{\partial{x_2}} & ... & \frac{\partial{f_m}}{\partial{x_n}} \\ \end{bmatrix} %}

Multi-Variable Chain Rule


The multi-variable version of the chain rule is most compactly specified using the Jacobian as
{% \frac{\partial{\vec{f}}}{\partial{\vec{x}}} = \frac{\partial{\vec{f}}}{\partial{\vec{g}}} \times \frac{\partial{\vec{g}}}{\partial{\vec{x}}} %}

Change of Variables


The Jacobian is used in the change of variables formula for multi variable integration (shown here for 2 variables)
{% \displaystyle \int \int f(x,y) dx dy = \int \int f(X(u.v), Y(u,v)) J(u,v) du dv %}
when dealing with single variable integration, this formula reduces to
{% \displaystyle \int f(x)dx = \int f[g(t)]g'(t) dt %}