Jacobians in Two Variables
students, imagine trying to stretch a square rubber sheet into a new shape on a table 🧩. Some parts may get stretched, some compressed, and some flipped. In multivariable calculus, the Jacobian tells us exactly how a change of coordinates changes tiny areas. That idea is central to change of variables and appears often on Midterm 1, especially when working with polar coordinates and double integrals.
What the Jacobian Measures
In one variable calculus, the derivative tells you how fast a function changes. In two variables, the Jacobian plays a similar role, but it measures how a transformation changes area instead of just length. If a transformation sends $(u,v)$ to $(x,y)$, then a tiny rectangle in the $uv$-plane usually becomes a tiny curved shape in the $xy$-plane. The Jacobian helps estimate the area scaling of that tiny shape.
Suppose we have a transformation
$$x=x(u,v), \quad y=y(u,v).$$
The Jacobian matrix is
$$\frac{\partial(x,y)}{\partial(u,v)}=
$\begin{pmatrix}$
\frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\
\frac{\partial y}{\partial u} & \frac{\partial y}{\partial v}
$\end{pmatrix}$.$$
The Jacobian determinant is
$$\frac{\partial(x,y)}{\partial(u,v)} = \frac{\partial x}{\partial u}\frac{\partial y}{\partial v}-\frac{\partial x}{\partial v}\frac{\partial y}{\partial u}.$$
This determinant gives the local area scaling factor. If its absolute value is $2$, then a tiny area in the $uv$-plane becomes about twice as large in the $xy$-plane. If it is $\frac{1}{3}$, the area shrinks to about one third. If it is negative, the transformation reverses orientation, like a mirror flip 🔄.
Why Change of Variables Needs the Jacobian
When solving double integrals, we sometimes change from $x$ and $y$ to new variables $u$ and $v$ because the region becomes simpler. The main change-of-variables formula is
$$\iint_R f(x,y)\,dA = \iint_S f(x(u,v),y(u,v))\left|\frac{\partial(x,y)}{\partial(u,v)}\right|\,du\,dv,$$
where $R$ is the region in the $xy$-plane and $S$ is the corresponding region in the $uv$-plane.
The absolute value is important because area should be positive. Even if the transformation reverses orientation, the integral over area must still count positive geometric size. This is why the Jacobian is not just a technical detail; it is the correction factor that makes the integral work correctly.
A useful way to think about it is this: the function inside the integral tells you what you are adding up, and the Jacobian tells you how much each tiny $du\,dv$ piece represents in the original coordinate system.
A Simple Linear Example
Consider the transformation
$$x=2u, \quad y=3v.$$
Then
$$\frac{\partial(x,y)}{\partial(u,v)}=
$\begin{pmatrix}$
2 & 0 \\
0 & 3
$\end{pmatrix}$,$$
so the Jacobian determinant is
$$\left|\frac{\partial(x,y)}{\partial(u,v)}\right|=|2\cdot 3-0|=6.$$
This means every tiny rectangle in the $uv$-plane gets stretched so that its area becomes six times larger in the $xy$-plane. If the rectangle in $uv$ has area $0.1$, then its image in $xy$ has area about $0.6$.
This example is simple because the transformation just stretches the axes. More interesting transformations can shear, rotate, and curve the grid, but the Jacobian still tells the area scaling near each point.
Polar Coordinates and Their Jacobian
One of the most important coordinate changes in this topic is polar coordinates. Here we use
$$x=r\cos\theta, \quad y=r\sin\theta.$$
The Jacobian matrix is
$$\frac{\partial(x,y)}{\partial(r,\theta)}=
$\begin{pmatrix}$
$\cos\theta & -r\sin\theta \\$
$\sin\theta & r\cos\theta$
$\end{pmatrix}$.$$
Its determinant is
$$\frac{\partial(x,y)}{\partial(r,\theta)} = r\cos^2\theta + r\sin^2\theta = r.$$
So the area element changes by
$$dA = dx\,dy = r\,dr\,d\theta.$$
This is a huge idea in multivariable calculus. A tiny rectangle in the $r\theta$-plane corresponds to a tiny wedge-shaped region in the $xy$-plane, and the factor $r$ accounts for how those wedges get wider as you move away from the origin 🌐.
Example: Area of a Disk
Find the area of the disk $x^2+y^2\le a^2$.
In polar coordinates, this becomes
$$0\le r\le a, \quad 0\le \theta\le 2\pi.$$
So the area is
$$\iint_R 1\,dA = \int_0^{2\pi}\int_0^a 1\cdot r\,dr\,d\theta.$$
Compute the integral:
$$\int_0^{2\pi}\int_0^a r\,dr\,d\theta = \int_0^{2\pi}\left[\frac{r^2}{2}\right]_0^a d\theta = \int_0^{2\pi}\frac{a^2}{2}\,d\theta = \pi a^2.$$
The result matches the familiar formula for the area of a circle. The Jacobian factor $r$ is what makes the polar integral give the correct answer.
How to Compute and Interpret a Jacobian
To compute a Jacobian in two variables, follow these steps:
- Write the transformation equations for $x$ and $y$ in terms of $u$ and $v$.
- Find the four partial derivatives.
- Place them in a $2\times 2$ matrix.
- Take the determinant.
- Use the absolute value when changing variables in a double integral.
For example, if
$$x=u+v, \quad y=u-v,$$
then
$$\frac{\partial(x,y)}{\partial(u,v)}=
$\begin{pmatrix}$
1 & 1 \\
1 & -1
$\end{pmatrix}$,$$
and the determinant is
$$\frac{\partial(x,y)}{\partial(u,v)} = (1)(-1)-(1)(1)=-2.$$
So the area scaling factor is
$$\left|\frac{\partial(x,y)}{\partial(u,v)}\right|=2.$$
That means a small area in the $uv$-plane becomes twice as large in the $xy$-plane. The negative sign tells us the transformation reverses orientation, but the area factor used in integrals is still $2$.
Common Mistakes and How to Avoid Them
A very common mistake is forgetting the Jacobian factor entirely. If you change variables but do not include the Jacobian, the integral will usually be wrong. Another mistake is using the determinant without absolute value when computing area or volume-type integrals. Since area should not be negative, the absolute value is necessary.
It is also important to keep the variables straight. If the transformation is written as $x=x(u,v)$ and $y=y(u,v)$, then the Jacobian must be computed with respect to $u$ and $v$, not $x$ and $y$. The order matters too. In general,
$$\frac{\partial(x,y)}{\partial(u,v)} \neq \frac{\partial(u,v)}{\partial(x,y)}.$$
These two are reciprocals only under suitable invertibility conditions.
Another helpful check: if the transformation seems to stretch lengths by a factor of $k$ in one direction and by a factor of $m$ in another, then the area scaling should often be about $km$. For polar coordinates, the factor depends on $r$, which fits the fact that circles farther from the origin have larger circumference.
Why This Topic Matters for Midterm 1
Jacobians connect many ideas from the first half of multivariable calculus. They rely on partial derivatives, linear approximation, and double integrals. They also build on coordinate systems like polar coordinates, which are frequently tested because they simplify circular or radial regions.
On a midterm, you may be asked to:
- compute a Jacobian determinant,
- convert a region from Cartesian to polar form,
- rewrite a double integral using a change of variables,
- or explain why the factor $r$ appears in polar coordinates.
Being able to explain the meaning of the Jacobian is just as important as calculating it. It shows that you understand the geometry behind the formula, not just the steps.
Conclusion
The Jacobian in two variables is the bridge between coordinate changes and accurate integration. It tells us how a transformation changes tiny areas, which is why it appears in the change-of-variables formula. In polar coordinates, the Jacobian is $r$, and that single factor explains many integrals over circles and sectors. students, if you remember that the Jacobian is the local area-scaling factor, you will have a strong foundation for Midterm 1 and for solving many multivariable calculus problems correctly 📘.
Study Notes
- The Jacobian matrix for a transformation $x=x(u,v)$, $y=y(u,v)$ is $$\begin{pmatrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\ \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \end{pmatrix}.$$
- The Jacobian determinant is $$\frac{\partial(x,y)}{\partial(u,v)}=\frac{\partial x}{\partial u}\frac{\partial y}{\partial v}-\frac{\partial x}{\partial v}\frac{\partial y}{\partial u}.$$
- The absolute value $\left|\frac{\partial(x,y)}{\partial(u,v)}\right|$ is the area scaling factor used in change of variables.
- The change-of-variables formula is $$\iint_R f(x,y)\,dA=\iint_S f(x(u,v),y(u,v))\left|\frac{\partial(x,y)}{\partial(u,v)}\right|\,du\,dv.$$
- In polar coordinates, $x=r\cos\theta$ and $y=r\sin\theta$, so $$dA=r\,dr\,d\theta.$$
- The Jacobian can be negative, but area in integrals uses the absolute value.
- Polar coordinates are useful for circles, disks, and regions with radial symmetry.
- For Midterm 1, be ready to compute Jacobians, convert regions, and set up double integrals correctly.
