"Area elements stretch and warp under a change of coordinates. How do we keep track?"

1. Linear Transformations & the Determinant

A linear map $T(u,v) = (au + bv,\; cu + dv)$ sends the unit square to a parallelogram. The absolute value of the determinant $|\det A| = |ad - bc|$ tells you exactly how much area stretches (or shrinks).

$$A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, \quad \text{Area ratio} = |\det A| = |ad - bc|$$

Drag the sliders to reshape the matrix and watch the parallelogram change.

|det A| = 1.00

2. Nonlinear Stretching & the Jacobian

For a nonlinear map $(x,y) = T(u,v)$, the stretching varies from point to point. At each point, the best linear approximation is the Jacobian matrix:

$$J = \frac{\partial(x,y)}{\partial(u,v)} = \begin{pmatrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\[4pt] \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \end{pmatrix}$$

Zoom into a tiny cell of the $(u,v)$-grid. Under the nonlinear map, it becomes a tiny parallelogram whose area ratio is $|\det J|$ evaluated at that point.

In this example, the map $(r, \theta) \to (r\cos\theta,\; r\sin\theta)$ sends the rectangular $(r,\theta)$-grid to the familiar polar grid of circles and rays. The Jacobian is $|\det J| = r$, so cells farther from the origin get stretched more.

3. Jacobian Heatmap

Visualize $\left|\frac{\partial(x,y)}{\partial(u,v)}\right|$ over the entire parameter domain. Bright regions stretch area; dark regions compress it.

4. Polar Coordinates: Where the $r$ Comes From

In polar coordinates, $x = r\cos\theta$, $y = r\sin\theta$. The Jacobian is:

$$J = \begin{pmatrix} \cos\theta & -r\sin\theta \\ \sin\theta & r\cos\theta \end{pmatrix}, \quad |\det J| = r$$

So $dA = r\,dr\,d\theta$. At small $r$, wedge-shaped cells are tiny; at large $r$, they're big. The factor of $r$ accounts for this radial stretching.

5. The Change-of-Variables Formula

Putting it all together:

$$\iint_R f(x,y)\,dA = \iint_{R^*} f\!\big(x(u,v),\,y(u,v)\big)\;\left|\frac{\partial(x,y)}{\partial(u,v)}\right|\,du\,dv$$

Cartesian

$$\iint_R e^{-(x^2+y^2)}\,dx\,dy$$

Region: disk $x^2 + y^2 \le R^2$. Hard to integrate directly!

Polar

$$\int_0^{2\pi}\!\!\int_0^R e^{-r^2}\cdot r\;dr\,d\theta$$

The $r$ is the Jacobian. The integrand factors beautifully.

Playground: Custom Transformation

Enter your own coordinate map and see the grid deformation and Jacobian heatmap side by side.

6. Worked Example - Linear Substitution with Jacobian

When the integrand has a pattern like $f(x-y,\, x+y)$, nature is telling us the substitution. The expressions $x - y$ and $x + y$ appear together so naturally that we should just name them.

The problem

Evaluate $\displaystyle\iint_R e^{(x-y)/(x+y)}\,dA$, where $R$ is the square with vertices $(1,0)$, $(0,1)$, $(-1,0)$, $(0,-1)$.

Step 1: Choose the substitution

Let $u = x - y$ and $v = x + y$. Then $x = (u + v)/2$ and $y = (v - u)/2$. The integrand becomes simply $e^{u/v}$ - much cleaner.

Step 2: Compute the Jacobian

We need $\left|\dfrac{\partial(x,y)}{\partial(u,v)}\right|$:

$$\frac{\partial(x,y)}{\partial(u,v)} = \begin{vmatrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\[4pt] \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \end{vmatrix} = \begin{vmatrix} \tfrac{1}{2} & \tfrac{1}{2} \\[4pt] -\tfrac{1}{2} & \tfrac{1}{2} \end{vmatrix} = \frac{1}{4} + \frac{1}{4} = \frac{1}{2}$$

So $dA = dx\,dy = \tfrac{1}{2}\,du\,dv$.

Step 3: Transform the region

Always transform the boundary, not just the integrand. Sketch both regions. Let's check each vertex of the $xy$-square under $(u,v) = (x-y,\; x+y)$:

The tilted square in $xy$ maps to an axis-aligned square $-1 \le u \le 1$, $-1 \le v \le 1$ in $uv$. That's the whole point of this substitution - it un-tilts the region.

Step 4: Evaluate

$$\iint_R e^{(x-y)/(x+y)}\,dA = \int_{-1}^{1}\int_{-1}^{1} e^{u/v}\cdot\frac{1}{2}\,du\,dv$$

The inner integral (with respect to $u$, treating $v$ as constant):

$$\int_{-1}^{1} e^{u/v}\,du = v\,e^{u/v}\Big|_{u=-1}^{u=1} = v\!\left(e^{1/v} - e^{-1/v}\right)$$

So the full integral becomes:

$$\frac{1}{2}\int_{-1}^{1} v\!\left(e^{1/v} - e^{-1/v}\right)\,dv$$

Notice that $g(v) = v(e^{1/v} - e^{-1/v})$ is an even function of $v$ (check: replacing $v$ with $-v$ gives $-v(e^{-1/v} - e^{1/v}) = v(e^{1/v} - e^{-1/v})$). So the integral equals $\displaystyle\int_0^{1} v(e^{1/v} - e^{-1/v})\,dv$, which can be evaluated by the substitution $w = 1/v$. We won't pursue the final closed form here - the key lesson is how the Jacobian and region transformation work together.

7. Worked Example - Polar Coordinates on an Annulus

Polar coordinates really shine when the region is a polar rectangle. An annulus (ring), a wedge, or a sector - these regions have constant $r$-limits and constant $\theta$-limits, so there's no $\theta$-dependence in the $r$-bounds. The integral just factors.

The problem

Evaluate $\displaystyle\iint_R \frac{dA}{(x^2 + y^2)^{3/2}}$, where $R$ is the annulus $1 \le x^2 + y^2 \le 4$.

Step 1: Convert to polar

With $x = r\cos\theta$, $y = r\sin\theta$, the integrand is $(x^2 + y^2)^{-3/2} = (r^2)^{-3/2} = r^{-3}$. Including the Jacobian factor $r$ from $dA = r\,dr\,d\theta$, the integrand becomes:

$$r^{-3} \cdot r = r^{-2}$$

Step 2: Identify the limits

The annulus $1 \le x^2 + y^2 \le 4$ is simply $1 \le r \le 2$ with a full revolution $0 \le \theta \le 2\pi$. Both limits are constant - no $\theta$-dependence in the $r$-bounds and no $r$-dependence in the $\theta$-bounds. The integral factors cleanly.

Step 3: Evaluate

$$\int_0^{2\pi}d\theta \int_1^{2} r^{-2}\,dr = 2\pi \cdot \left[-\frac{1}{r}\right]_1^2 = 2\pi\cdot\left(-\frac{1}{2} + 1\right) = 2\pi \cdot \frac{1}{2} = \pi$$

Sanity check

The area of the annulus is $\pi(2^2 - 1^2) = 3\pi$. So the average value of the integrand over the region is $\pi / 3\pi = 1/3$. Meanwhile, the integrand $r^{-3}$ ranges from $1$ (at $r = 1$) down to $1/8$ (at $r = 2$). An average of $1/3$ sits between these extremes, weighted toward the inner boundary where the integrand is larger and the area elements are smaller. That checks out.

Common trap: When the region IS a polar rectangle (annulus, wedge, sector), the limits are constant - no $\theta$-dependence in the $r$-limits. If you find yourself writing $r$-limits that depend on $\theta$, double-check whether you've set up the region correctly.

8. Cylindrical Coordinates

We've been setting up triple integrals in Cartesian. But what if the region has a circular cross-section - a cylinder, a cone, a pipe? Wrestling with $x^2 + y^2 \le 4$ in Cartesian is painful. We'd have to write $-\sqrt{4 - x^2} \le y \le \sqrt{4 - x^2}$ and deal with square roots in every limit.

Polar coordinates turn circles into rectangles in 2D. Cylindrical coordinates do the same thing in 3D - just stack a $z$-axis on top of the polar plane:

$$x = r\cos\theta, \quad y = r\sin\theta, \quad z = z$$

The Jacobian for this transformation is exactly the polar Jacobian (the $z$-coordinate passes through unchanged):

$$\frac{\partial(x,y,z)}{\partial(r,\theta,z)} = \begin{pmatrix} \cos\theta & -r\sin\theta & 0 \\ \sin\theta & r\cos\theta & 0 \\ 0 & 0 & 1 \end{pmatrix}, \quad \left|\det J\right| = r$$
$$dV = r\,dr\,d\theta\,dz$$

Common trap: Don't forget the extra $r$ in $dV = r\,dr\,d\theta\,dz$. The Jacobian contributes this factor. Missing it is the #1 cylindrical-coordinate mistake.

Worked Example

Evaluate $\displaystyle\iiint_R (x^2 + y^2)\,z\;dV$ over the solid cylinder $x^2 + y^2 \le 4$, $0 \le z \le 3$.

Before we compute, let's predict the answer. The average value of $r^2 = x^2 + y^2$ over a disk of radius 2 is: the disk has area $4\pi$, and $\int_0^{2\pi}\!\int_0^2 r^2 \cdot r\,dr\,d\theta = 2\pi\cdot\frac{r^4}{4}\Big|_0^2 = 8\pi$, so the average $r^2 = 8\pi / 4\pi = 2$. The average $z$ over $[0,3]$ is $3/2$. The volume of the cylinder is $\pi(2)^2(3) = 12\pi$. So the integral should be roughly $2 \cdot \frac{3}{2} \cdot 12\pi = 36\pi$. Let's check...

In cylindrical coordinates, $x^2 + y^2 = r^2$, and the region becomes:

The integral factors cleanly:

$$\int_0^{2\pi}d\theta\int_0^2 r^2 \cdot r\,dr\int_0^3 z\,dz = 2\pi \cdot \frac{r^4}{4}\bigg|_0^2 \cdot \frac{z^2}{2}\bigg|_0^3 = 2\pi \cdot 4 \cdot \frac{9}{2} = 36\pi$$

Our prediction was exactly right. The factoring trick works whenever the integrand separates into $f(r)\cdot g(\theta) \cdot h(z)$ and the region is a product $[r_1, r_2] \times [\theta_1, \theta_2] \times [z_1, z_2]$.

Practice Problems (Kaplan §4.6)

From Kaplan, problems after §4.6

1(a) Evaluate using $x = \sin\theta$
Evaluate $\displaystyle\int_0^1 (1-x^2)^{3/2}\,dx$ using $x = \sin\theta$.

Step 1: Substitute

Let $x = \sin\theta$, so $dx = \cos\theta\,d\theta$. When $x = 0$, $\theta = 0$; when $x = 1$, $\theta = \pi/2$.

$(1 - x^2)^{3/2} = (1 - \sin^2\theta)^{3/2} = \cos^3\theta$ (since $\cos\theta \ge 0$ on $[0, \pi/2]$).

Step 2: Evaluate

$$\int_0^{\pi/2}\cos^3\theta\cdot\cos\theta\,d\theta = \int_0^{\pi/2}\cos^4\theta\,d\theta$$

Using the reduction formula (or $\cos^4\theta = \frac{3 + 4\cos 2\theta + \cos 4\theta}{8}$):

$$\int_0^{\pi/2}\cos^4\theta\,d\theta = \frac{3\pi}{16}$$
4(a) Polar substitution over the unit disk
Evaluate $\displaystyle\iint_R (1-x^2-y^2)\,dx\,dy$ over $x^2+y^2 \le 1$, using $x = r\cos\theta$, $y = r\sin\theta$.

Step 1: Transform to polar

With $x = r\cos\theta$, $y = r\sin\theta$, the Jacobian is $r$, and $1 - x^2 - y^2 = 1 - r^2$. The disk becomes $0 \le r \le 1$, $0 \le \theta \le 2\pi$.

$$\int_0^{2\pi}\int_0^1 (1-r^2)\cdot r\,dr\,d\theta$$

Step 2: Evaluate

$$\int_0^1 (r - r^3)\,dr = \frac{1}{2} - \frac{1}{4} = \frac{1}{4}$$

$$2\pi\cdot\frac{1}{4} = \frac{\pi}{2}$$
4(e) Diagonalizing a quadratic form
Evaluate $\displaystyle\iint_R \sqrt{5x^2+2xy+2y^2}\,dx\,dy$ over $5x^2+2xy+2y^2 \le 1$, using $x = u+v$, $y = -2u+v$.

Step 1: Compute the Jacobian

$$\frac{\partial(x,y)}{\partial(u,v)} = \begin{vmatrix} 1 & 1 \\ -2 & 1 \end{vmatrix} = 1\cdot 1 - 1\cdot(-2) = 3$$

So $dx\,dy = 3\,du\,dv$.

Step 2: Simplify the quadratic form

Substituting $x = u+v$, $y = -2u+v$ into $5x^2+2xy+2y^2$:

$5(u+v)^2 + 2(u+v)(-2u+v) + 2(-2u+v)^2$

$= 5u^2+10uv+5v^2 - 4u^2+2uv-2uv+2v^2 + 8u^2-4uv+2v^2 = 9u^2 + 9v^2$

The substitution diagonalizes the form. The region becomes $9(u^2+v^2) \le 1$, i.e. $u^2+v^2 \le 1/9$.

Step 3: Evaluate in polar coordinates

The integrand becomes $\sqrt{9u^2+9v^2} = 3\sqrt{u^2+v^2} = 3r$ in polar. The region is a disk of radius $1/3$.

$$\int_0^{2\pi}\int_0^{1/3} 3r\cdot 3\cdot r\,dr\,d\theta = 9\int_0^{2\pi}\int_0^{1/3} r^2\,dr\,d\theta = 9\cdot 2\pi\cdot\frac{1}{81} = \frac{2\pi}{9}$$
5 Verify one-to-one mapping and transform an integral
Verify that $u = e^x\cos y$, $v = e^x\sin y$ maps $R_{xy}: 0 \le x \le 1$, $0 \le y \le \pi/2$ one-to-one, and express $\displaystyle\iint_R \frac{e^{2x}\sin^2 y}{1+e^{4x}\cos^2 y}\,dx\,dy$ as an integral in $u,v$.

Step 1: Verify one-to-one

If $(x_1,y_1)$ and $(x_2,y_2)$ give the same $(u,v)$, then $e^{x_1}\cos y_1 = e^{x_2}\cos y_2$ and $e^{x_1}\sin y_1 = e^{x_2}\sin y_2$. Dividing: $\tan y_1 = \tan y_2$. Since $y \in [0, \pi/2)$ (or including $\pi/2$ where both sides diverge consistently), $y_1 = y_2$. Then $e^{x_1} = e^{x_2}$, so $x_1 = x_2$. The map is one-to-one.

Step 2: Compute the Jacobian

$$\frac{\partial(u,v)}{\partial(x,y)} = \begin{vmatrix} e^x\cos y & -e^x\sin y \\ e^x\sin y & e^x\cos y \end{vmatrix} = e^{2x}(\cos^2 y + \sin^2 y) = e^{2x}$$

So $dx\,dy = \frac{1}{e^{2x}}\,du\,dv = \frac{1}{u^2+v^2}\,du\,dv$ (since $u^2+v^2 = e^{2x}$).

Step 3: Transform the integrand

The integrand $\dfrac{e^{2x}\sin^2 y}{1+e^{4x}\cos^2 y}$ becomes $\dfrac{v^2/(u^2+v^2)}{1+u^2(u^2+v^2)}\cdot(u^2+v^2)$ after substituting and including the Jacobian factor. The integral transforms to an integral over the image region in the $uv$-plane.

7(a) Transform with $x=u+v$, $y=u-v$
Transform $\displaystyle\int_0^1\int_0^1\log(1+x^2+y^2)\,dy\,dx$ using $x = u+v$, $y = u-v$.

Step 1: Jacobian

$x = u+v$, $y = u-v$, so $u = (x+y)/2$, $v = (x-y)/2$.

$$\frac{\partial(x,y)}{\partial(u,v)} = \begin{vmatrix} 1 & 1 \\ 1 & -1 \end{vmatrix} = -2, \quad |J| = 2$$

Step 2: Transform the region

The unit square $0 \le x \le 1$, $0 \le y \le 1$ has vertices $(0,0),(1,0),(1,1),(0,1)$ mapping to $(u,v)$: $(0,0),(1/2,1/2),(1,0),(1/2,-1/2)$. This is a square rotated $45^\circ$.

In $(u,v)$ coordinates: $0 \le u \le 1$, with $|v| \le \min(u, 1-u)$.

Step 3: Write the transformed integral

The integrand becomes $\log(1+(u+v)^2+(u-v)^2) = \log(1+2u^2+2v^2)$.

$$\int_0^{1/2}\int_{-u}^{u}\log(1+2u^2+2v^2)\cdot 2\,dv\,du + \int_{1/2}^{1}\int_{-(1-u)}^{1-u}\log(1+2u^2+2v^2)\cdot 2\,dv\,du$$
11(b) Transform to cylindrical coordinates
Transform to cylindrical coordinates but do not evaluate: $\displaystyle\int_0^1\int_0^{\sqrt{1-x^2}}\int_0^{1+x+y}(x^2-y^2)\,dz\,dy\,dx$.

Step 1: Identify the region

The $xy$-projection is $0 \le x \le 1$, $0 \le y \le \sqrt{1-x^2}$, which is a quarter-disk of radius $1$ in the first quadrant. In cylindrical: $0 \le r \le 1$, $0 \le \theta \le \pi/2$.

Step 2: Transform the integrand and bounds

With $x = r\cos\theta$, $y = r\sin\theta$:

  • $z$ bound: $0 \le z \le 1 + r\cos\theta + r\sin\theta$
  • Integrand: $x^2 - y^2 = r^2\cos^2\theta - r^2\sin^2\theta = r^2\cos 2\theta$
  • Volume element: $dV = r\,dz\,dr\,d\theta$
$$\int_0^{\pi/2}\int_0^1\int_0^{1+r\cos\theta+r\sin\theta} r^2\cos 2\theta\cdot r\,dz\,dr\,d\theta = \int_0^{\pi/2}\int_0^1\int_0^{1+r\cos\theta+r\sin\theta} r^3\cos 2\theta\,dz\,dr\,d\theta$$