Integrating by Changing to Polar Coordinates- Complete Tutorial
What Polar Coordinates Actually Are (And Why You Need Them)
Cartesian coordinates use x and y. Polar coordinates use r (distance from origin) and θ (angle from positive x-axis). That's the whole difference.
Most integration problems are easier in one system or the other. Circles, spirals, and anything with radial symmetry screams for polar coordinates. Rectangles and sloped lines? Stick with Cartesian.
There's no philosophy here. Use the right tool for the job.
When to Switch to Polar Coordinates
You'll recognize these situations:
- The region has circular boundaries
- The integrand contains x² + y²
- You're integrating over a sector of a circle
- The problem involves angles naturally (θ appears in the limits)
If your region curves, polar is probably cleaner. If it's all straight lines, Cartesian wins.
The Jacobian: The Part Everyone Forgets
When you switch variables, you multiply by the Jacobian. For polar coordinates, this is simply r.
So:
dA = dx dy becomes dA = r dr dθ
This extra r isn't optional. Skip it and your answer is wrong. Always.
Setting Up Polar Integrals
A double integral in polar coordinates looks like:
∬ f(r,θ) · r dr dθ
Three things to determine for every problem:
- r limits: How far does the radius extend from the origin?
- θ limits: What angle sweep covers the region?
- Integrand: Convert x and y to r and θ if needed
Finding the Limits
For θ: Sketch the region. The smallest angle to the largest angle that bounds the region. Common cases:
- Full circle: θ goes from 0 to 2π
- Semi-circle: θ goes from 0 to π
- Quarter circle: θ goes from 0 to π/2 (or other quarter)
For r: Express the boundary curves in terms of r and θ, then solve for r. If the inner boundary is the origin, r goes from 0 to the curve. If you have an annulus, r goes from inner radius to outer radius.
Converting the Integrand
Replace x and y using:
x = r cos(θ)
y = r sin(θ)
Common conversions you'll see:
- x² + y² = r²
- x² + y² ≤ a² becomes r ≤ a
- x = r cos(θ), y = r sin(θ)
The integrand f(x,y) becomes f(r cos θ, r sin θ). Sometimes this simplifies nicely. Sometimes it stays ugly. Do the algebra anyway.
Common Region Types
Circle Centered at Origin
r goes from 0 to a, θ goes from 0 to 2π.
Area of a full circle:
∫₀²π ∫₀ᵃ r dr dθ = ½a² · 2π = πa²
Sector of a Circle
r goes from 0 to a, θ goes from α to β (your sector angles).
Annulus (Ring)
r goes from inner radius to outer radius. θ depends on how much of the ring you need.
Region Between Two Circles
r goes from the inner curve to the outer curve. θ covers whatever portion of the ring you need.
How To: The Step-by-Step Process
Here's what you actually do when given a problem:
- Sketch the region. Draw x and y axes, mark boundaries, shade the region you want.
- Identify the θ bounds. What angles does the region span? Read it off your sketch.
- Find the r bounds. Express the radial boundaries in terms of r and θ. Usually r goes from one curve to another.
- Convert the integrand. Replace x with r cos θ, y with r sin θ. Combine into r and θ only.
- Add the Jacobian. Multiply the entire integrand by r.
- Evaluate the inner integral (usually with respect to r first).
- Evaluate the outer integral (with respect to θ).
- Calculate the number.
That's it. No magic. Just follow the steps.
Cartesian vs Polar: When to Use Which
| Situation | Better System | Why |
|---|---|---|
| Circle or sector | Polar | Boundary is r = constant |
| Rectangle or triangle | Cartesian | Boundaries are x = constant or y = constant |
| Integrand has x² + y² | Polar | Becomes r² |
| Curved boundaries | Polar | Equations stay simpler |
| Straight-line boundaries | Cartesian | Equations are already simple |
| Ellipse | Cartesian | Polar equation gets messy |
Common Mistakes That Kill Your Answer
Forgetting the r. The Jacobian isn't optional. Every polar integral needs that extra r.
Wrong θ bounds. If you trace the region, θ should only increase. Don't wrap around.
Swapping the order incorrectly. In polar, you almost always integrate r first, then θ. The limits for r often depend on θ. If you reverse, you have to redo your bounds.
Converting the region but not the integrand. Or vice versa. Both must be fully converted.
Using degrees instead of radians. Always radians in calculus. Always.
Example: Half a Disk
Find the area of the upper half of the circle x² + y² = 9.
Step 1: Sketch. Upper half of a circle radius 3, centered at origin.
Step 2: θ bounds. Top half means θ goes from 0 to π.
Step 3: r bounds. The boundary is r = 3 (the circle itself). Since we're filling from origin outward, r goes from 0 to 3.
Step 4: Convert. For area, the integrand is 1.
Step 5: Add Jacobian. The integral is ∫₀^π ∫₀³ r dr dθ.
Step 6: Evaluate.
∫₀³ r dr = ½(9) = 4.5
∫₀^π 4.5 dθ = 4.5π
The area is 4.5π. That's ½ of π(3)², which checks out.
Example: Converting an Integrand
Evaluate ∬(x² + y²) dA over the region inside r = 2.
Since x² + y² = r², the integrand becomes r².
Add the Jacobian: r² · r = r³.
Integral: ∫₀²π ∫₀² r³ dr dθ
∫₀² r³ dr = ¼(16) = 4
∫₀²π 4 dθ = 8π
The answer is 8π.
The Bottom Line
Polar coordinates aren't a trick or a theory. They're a coordinate system that makes certain regions easier to work with. Circles, sectors, anything with radial symmetry.
Remember the Jacobian. Get the bounds right. Convert everything. That's the whole process.
Do a few practice problems and it clicks. There's no secret—it's just algebra with extra steps.