Visualizing Rectangular to Polar Conversion: Graphs and Worked Problems
Overview
Converting from rectangular (Cartesian) coordinates (x, y) to polar coordinates (r, θ) rewrites a point by its distance r from the origin and angle θ measured from the positive x-axis. Use:
- r = sqrt(x^2 + y^2)
- θ = atan2(y, x) (returns angle in correct quadrant)
Graphical intuition
- r is the radius of the circle centered at origin passing through (x,y).
- θ is the angle between the positive x-axis and the line from origin to (x,y).
- Points with same r lie on a circle; points with same θ lie on a ray through the origin.
- Converting transforms rectangular grid lines: vertical x = c become curves r cosθ = c, horizontal y = c become r sinθ = c.
Common angle choices and quadrant handling
- Use atan2(y,x) to get θ in (-π, π] or 0, 2π) depending on convention.
- If using arctan(y/x), add π when x < 0 and add 2π if you want a positive angle.
- For points on axes: if x = 0 and y = 0 → r = 0 and θ is undefined (choose 0 by convention); if x = 0, set θ = π/2 or -π/2 depending on sign of y.
Worked problems (2 examples)
- Point (−1, √3)
- r = sqrt((-1)^2 + (√3)^2) = sqrt(1+3)=2
- θ = atan2(√3, -1) = 2π/3 (120°)
- Polar: (2, 2π/3)
- Point (−2, −2)
- r = sqrt(4+4)=2√2
- θ = atan2(-2, -2) = -3π/4 (or 5π/4 for positive angle)
- Polar: (2√2, -3π/4) or (2√2, 5π/4)
Graphing tips
- Plot the point in Cartesian, draw the ray from origin, measure r and θ directly.
- Use polar grid paper or overlay concentric circles and radial lines.
- For curves: convert equation by substituting x = r cosθ, y = r sinθ (e.g., circle x^2 + y^2 = 4 → r = 2; line y = x → θ = π/4).
Applications
- Useful in integrals with circular symmetry, plotting spirals (r = aθ), and converting vector fields to simplify calculations.
Quick reference
- Formulas: r = √(x²+y²), θ = atan2(y,x)
- Axis rules: origin r=0; θ undefined at origin
- Multiple representations: (r, θ) ≡ (r, θ+2π); also (−r, θ+π)
Leave a Reply