Cylindrical Coordinates
Cylindrical (r,θ,z): r = distance from z-axis, θ = azimuth in xy-plane, z = height. Cartesian↔Cylindrical: x=r cos θ, y=r sin θ, z=z; r=√(x²+y²), θ=atan2(y,x).
Why This Mathematical Concept Matters
Why: Cylindrical coordinates simplify problems with axial symmetry: electric fields around wires, pipe flow, rotating systems. Bidirectional conversion is common in physics and engineering.
How: Cartesian→Cylindrical: r=√(x²+y²), θ=atan2(y,x), z=z. Cylindrical→Cartesian: x=r cos θ, y=r sin θ, z=z. Use radians or degrees consistently.
- ●Same as 2D polar in xy-plane plus z.
- ●r ≥ 0; θ typically in [0, 2π) or (-π, π].
- ●On z-axis: r=0, θ undefined.
Sample Examples
Input
Cartesian (x, y, z)
Cylindrical (r, θ, z)
Results
Cartesian
(3, 4, 5)
Cylindrical
r = 5, θ = 53.13°, z = 5
⚠️For educational and informational purposes only. Verify with a qualified professional.
🧮 Fascinating Math Facts
x=r cos θ, y=r sin θ, z=z; r=√(x²+y²), θ=atan2(y,x).
— 3D Geometry
z unchanged in both systems.
— Property
Key Takeaways
- r = √(x²+y²), θ = atan2(y,x), z = z
- x = r cos θ, y = r sin θ, z = z
- Polar + height: extends 2D polar to 3D
- r ≥ 0; θ in [0, 2π)
- Used for cylindrical symmetry
Did You Know?
- Pipes, cylinders, rotational symmetry
- Volume element: r dr dθ dz
- Laplace in cylindrical coordinates
- Bessel functions arise naturally
- Used in E&M, fluid dynamics
- Between polar and spherical
Understanding
Cylindrical = polar (r,θ) in xy-plane + z height.
Expert Tips
- On z-axis: r=0, θ undefined
- Same as polar when z=0
- r is distance from z-axis
- θ measured from +x axis
FAQ
A: Polar + z; same (r,θ) in xy-plane.
A: Pipes, antennas, rotational symmetry.
A: dV = r dr dθ dz.
A: r=0, θ arbitrary.
A: r = ρ sin φ, z = ρ cos φ.
A: ∇f = (∂f/∂r)r̂ + (1/r)(∂f/∂θ)θ̂ + (∂f/∂z)ẑ.
A: Cylindrical symmetry problems.
How to Use
- Enter Cartesian (x,y,z) or Cylindrical (r,θ,z)
- Other form updates automatically
- θ in degrees or radians
Disclaimer
r ≥ 0.