Choosing the right coordinate system simplifies integration dramatically.
Polar coordinates (r,θ) in R2:
x=rcosθ,y=rsinθ,dA=rdrdθ
Cylindrical coordinates (r,θ,z) in R3:
x=rcosθ,y=rsinθ,z=z,dV=rdrdθdz
Spherical coordinates (ρ,θ,ϕ) in R3:
x=ρsinϕcosθ,y=ρsinϕsinθ,z=ρcosϕ
dV=ρ2sinϕdρdϕdθ
When to use each
| Symmetry | Coordinate system |
|---|
| Circular (2D) | Polar |
| Cylindrical (pipe, disk) | Cylindrical |
| Spherical (ball, cone) | Spherical |
Example — Volume of a sphere of radius R:
V=∫02π∫0π∫0Rρ2sinϕdρdϕdθ=34πR3
Physics link: Gravitational and electric potentials have spherical symmetry. The Laplacian ∇2 in spherical coordinates is essential for solving Laplace's and Poisson's equations.
Common pitfall: Spherical convention clash: mathematicians and physicists swap the names of θ and φ. Check which angle runs from the pole (0 to π) before copying any formula between sources.