Vectors & Polar Coordinates
Rectangular to Polar Conversion
Converting points and equations between rectangular and polar form.
Prerequisites
- Vector Operations
Coordinates Built from Distance and Direction
A vector ⟨3, 4⟩ has a magnitude of 5 and points in a specific direction. Before reading on, think about this: instead of describing a location by how far right and how far up (rectangular coordinates), could a point instead be described directly by its distance from the origin and the angle it makes — the same two pieces of information a vector already carries?
Definition — Polar Coordinates
These conversions come directly from the unit circle, scaled by r: (cos θ, sin θ) gives the direction on a circle of radius 1, and multiplying both coordinates by r stretches that same direction out to the actual distance r — exactly x = r cos θ and y = r sin θ. The reverse formulas, r = √(x² + y²) and θ = arctan(y/x), are the same magnitude and direction ideas already used for vectors, just renamed.
Worked Example — Converting Rectangular to Polar
Worked Example — Converting Polar to Rectangular
Worked Example — Converting an Equation, Not Just a Point
Tip
Common Mistakes
Using arctan(y/x) directly without checking the quadrant, such as computing θ = arctan(1) = π/4 for the point (−1, −1), when the true angle is actually in Quadrant III.
arctan only returns angles between −π/2 and π/2 — for a point in Quadrant II or III, add π to the raw arctan result to land in the correct quadrant; for (−1, −1), that gives π/4 + π = 5π/4.
Forgetting that a single rectangular point corresponds to infinitely many equivalent polar representations, by adding any multiple of 2π to θ.
Polar coordinates aren't unique the way rectangular coordinates are — (r, θ) and (r, θ + 2π) describe the exact same point, which is fine as long as one consistent representation is used within a single problem.
Key Takeaways
- Polar coordinates (r, θ) describe a point by distance from the origin and angle, the same two quantities a vector's magnitude and direction already capture.
- The conversion formulas come from scaling the unit circle's (cos θ, sin θ) by the distance r.
- Converting θ using arctan requires checking the point's actual quadrant, since arctan alone doesn't distinguish all four quadrants.
Summary
Polar coordinates reframe location around distance and direction rather than horizontal and vertical displacement. The next lesson graphs equations written directly in this new coordinate system.
Sign in to track your progress and mark this lesson complete.
Track your progress