Cylindrical Coordinates

Summary

Cylindrical coordinates (r,θ,z) extend polar coordinates by a vertical z . They suit problems with axial symmetry about the z -axis. The volume element is rdrdθdz .

Prerequisites

Polar Coordinates

Definition

Cartesian relations:

x=rcosθ,y=rsinθ,z=z.

Inverse Formulas

r=x2+y2,θ=atan2(y,x),z=z.

Use atan2(y,x) (two-argument arctangent), not arctan(y/x) alone, so the quadrant is correct when x0 .

Formula

Volume element:

dV=rdrdθdz.

Gradient in orthonormal cylindrical basis (for reference):

f=frer+1rfθeθ+fzez(r>0).

Conditions / Assumptions

Worked Example

Cartesian point (23,6,4) :

r=12+36=48=43,θ=atan2(6,23)=π/3,z=4.

So (r,θ,z)=(43,π/3,4) .

Common Mistakes

Connections

References

Cylindrical coordinates appear in OpenStax Calculus Volume 3.[1]


  1. OpenStax, Calculus Volume 3, Section 5.5, https://openstax.org/details/books/calculus-volume-3 ↩︎