Cylindrical to Cartesian
Convert (r,θ,z) to (x,y,z): x = r cos θ, y = r sin θ, z = z. Same as polar-to-Cartesian in the xy-plane with z unchanged. Use radians for cos/sin.
Did our AI summary help? Let us know.
Identical to 2D polar: (r,θ) → (r cos θ, r sin θ). r ≥ 0. Negative r can be handled as (|r|, θ+π). Inverse: r = √(x²+y²), θ = atan2(y,x), z = z.
Ready to run the numbers?
Why: Cylindrical-to-Cartesian conversion is needed when combining cylindrical solutions (e.g., from Laplace equation) with Cartesian boundary conditions, or for visualization.
How: x = r cos θ, y = r sin θ, z = z. Ensure θ is in radians when using cos/sin. For degrees, convert first: θ_rad = θ_deg × π/180.
Run the calculator when you are ready.
Enter Cylindrical Coordinates
For educational and informational purposes only. Verify with a qualified professional.
🧮 Fascinating Math Facts
x = r cos θ, y = r sin θ, z = z.
— 3D Geometry
Use radians for cos/sin in these formulas.
— Note
Key Takeaways
- • x = r · cos(θ), y = r · sin(θ), z = z
- • Same as polar-to-Cartesian in the xy-plane; z is unchanged
- • θ must be in radians when evaluating cos and sin
- • When r = 0, (x, y) = (0, 0) regardless of θ
- • Cylindrical is ideal for problems with axial symmetry
Did You Know?
Cylindrical is polar (r,θ) in the xy-plane plus z. The x,y formulas are identical to 2D polar-to-Cartesian.
Electromagnetic problems with cylindrical symmetry (coaxial cables, solenoids) use cylindrical coordinates.
Radial heat flow in pipes and cylindrical shells is modeled in cylindrical coordinates.
When r = 0, the point is on the z-axis. x = y = 0 regardless of θ.
To convert Cartesian to cylindrical: r = √(x²+y²), θ = atan2(y,x), z = z.
Cylindrical unit vectors êᵣ, êθ, êz relate to Cartesian via êᵣ = cos θ î + sin θ ĵ.
Understanding Cylindrical to Cartesian
Project (r,θ) onto the xy-plane: x = r·cos(θ), y = r·sin(θ). The z-coordinate is unchanged.
Ensure θ is in radians when evaluating cos and sin.
Expert Tips
Radians Required
cos and sin expect radians. Convert degrees: θ_rad = θ_deg × π/180.
r = 0
When r = 0, you get (0, 0, z) — a point on the z-axis. θ is irrelevant.
Verify with r
Check: x² + y² = r². Use this to verify your conversion.
Angle Periodicity
(r, θ) and (r, θ + 2π) give the same (x, y). Angles are 2π-periodic.
Frequently Asked Questions
What are the conversion formulas?
x = r·cos(θ), y = r·sin(θ), z = z. θ must be in radians for cos and sin.
Can I use degrees for θ?
Yes. Convert first: θ_radians = θ_degrees × π/180. This calculator supports both modes.
What happens when r = 0?
You get (0, 0, z) — a point on the z-axis. The angle θ does not affect the result.
How do I convert Cartesian to cylindrical?
Use r = √(x²+y²), θ = atan2(y,x), z = z. See our Cartesian to Cylindrical calculator.
Why does z stay the same?
Both coordinate systems use the same z-axis. z measures height above the xy-plane in both.
What is cylindrical used for?
Problems with cylindrical symmetry: wires, pipes, rotating fluids, pressure vessels.
How do I verify my result?
Check that x² + y² = r² and that (x,y) lies at angle θ from the x-axis.
How to Use This Calculator
- Enter cylindrical (r, θ, z). Select degrees or radians for θ.
- Click a sample example to auto-fill and calculate.
- Click Calculate to get Cartesian (x, y, z).
- Review the step-by-step solution and use Copy Results to share.
Note: Standard floating-point arithmetic. r must be non-negative.
Related Calculators
Cartesian To Cylindrical Calculator
Cartesian To Cylindrical Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsPolar To Cartesian Calculator
Polar To Cartesian Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsSpherical To Cartesian Calculator
Spherical To Cartesian Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsCartesian To Polar Calculator
Cartesian To Polar Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsCartesian To Spherical Calculator
Cartesian To Spherical Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsCylindrical Coordinates Calculator
Cylindrical Coordinates Calculator - Calculate and learn about coordinate-geometry concepts
Mathematics