Jacobian

Work in progress. This note is still being written and incomplete.

2 min read Last updated Fri Aug 14 2026 03:05:03 GMT+0000 (Coordinated Universal Time)

For a transformation TT from the uvuv-plane to the xyxy-plane defined by x=x(u,v)x = x(u,v), y=y(u,v)y = y(u,v), the Jacobian of TT is

J(u,v)=(x,y)(u,v)=xuxvyuyv=xuyvxvyuJ(u,v) = \frac{\partial(x,y)}{\partial(u,v)} = \begin{vmatrix} \dfrac{\partial x}{\partial u} & \dfrac{\partial x}{\partial v} \\[6pt] \dfrac{\partial y}{\partial u} & \dfrac{\partial y}{\partial v} \end{vmatrix} = \frac{\partial x}{\partial u}\frac{\partial y}{\partial v} - \frac{\partial x}{\partial v}\frac{\partial y}{\partial u}

For a transformation TT from uvwuvw-space to xyzxyz-space defined by x=x(u,v,w)x = x(u,v,w), y=y(u,v,w)y = y(u,v,w), z=z(u,v,w)z = z(u,v,w), the Jacobian of TT is

J(u,v,w)=(x,y,z)(u,v,w)=xuxvxwyuyvywzuzvzwJ(u,v,w) = \frac{\partial(x,y,z)}{\partial(u,v,w)} = \begin{vmatrix} \dfrac{\partial x}{\partial u} & \dfrac{\partial x}{\partial v} & \dfrac{\partial x}{\partial w} \\[6pt] \dfrac{\partial y}{\partial u} & \dfrac{\partial y}{\partial v} & \dfrac{\partial y}{\partial w} \\[6pt] \dfrac{\partial z}{\partial u} & \dfrac{\partial z}{\partial v} & \dfrac{\partial z}{\partial w} \end{vmatrix}

Examples:

  • (x,y)(r,θ)=r\dfrac{\partial(x,y)}{\partial(r,\theta)} = r, for polar coordinates x=rcosθx = r\cos\theta, y=rsinθy = r\sin\theta
  • (x,y,z)(ρ,ϕ,θ)=ρ2sinϕ\dfrac{\partial(x,y,z)}{\partial(\rho,\phi,\theta)} = \rho^2\sin\phi, for spherical coordinates

Change of Variables

Let TT be a transformation from the uvuv-plane to the xyxy-plane, mapping a region SS onto a region RR. If:

  • TT is one-to-one on SS
  • TT has continuous first partial derivatives
  • (x,y)(u,v)\dfrac{\partial(x,y)}{\partial(u,v)} is non-zero and does not change sign on SS

then

Rf(x,y)dA=Sf(x(u,v),y(u,v))(x,y)(u,v)dA\iint_R f(x,y)\,\text{d}A = \iint_S f(x(u,v), y(u,v)) \left| \frac{\partial(x,y)}{\partial(u,v)} \right| \text{d}A

Analogously, for a transformation TT from uvwuvw-space to xyzxyz-space mapping SS onto RR, satisfying the same 3 conditions with (x,y,z)(u,v,w)\dfrac{\partial(x,y,z)}{\partial(u,v,w)} in place of (x,y)(u,v)\dfrac{\partial(x,y)}{\partial(u,v)},

Rf(x,y,z)dV=Sf(x(u,v,w),y(u,v,w),z(u,v,w))(x,y,z)(u,v,w)dV\iiint_R f(x,y,z)\,\text{d}V = \iiint_S f(x(u,v,w), y(u,v,w), z(u,v,w)) \left| \frac{\partial(x,y,z)}{\partial(u,v,w)} \right| \text{d}V
Was this helpful?