Polar Coordinates
Understanding Polar Coordinates
While the rectangular (Cartesian) coordinate system uses a grid of horizontal and vertical lines to locate points as (x,y), the polar coordinate system uses distances and angles. This system is especially useful for graphing curves like circles, spirals, and rosettes that are complicated to express in x and y.
What are Polar Coordinates?
In the polar coordinate system, every point on a plane is defined by an ordered pair (r,θ):
- r (radius): The directed distance from the origin (often called the pole).
- θ (angle): The directed angle measured counterclockwise from the positive x-axis (the polar axis).
Converting Between Systems
Because polar and rectangular coordinates can describe the exact same point on a plane, we can easily convert between them using right triangle trigonometry.
Imagine a point P with rectangular coordinates (x,y) and polar coordinates (r,θ). Drawing a line from the origin to P creates a right triangle where the hypotenuse is r, the horizontal leg is x, and the vertical leg is y.
Polar to Rectangular To find (x,y) when you know (r,θ): x=rcosθ y=rsinθ
Rectangular to Polar To find (r,θ) when you know (x,y): r=x2+y2 tanθ=xy (Note: Always check which quadrant your point (x,y) is in to ensure you find the correct angle θ.)
Example 1: Rectangular to Polar
Problem: Convert the rectangular coordinates (3,4) to polar coordinates.
- Find r: r=32+42=9+16=25=5
- Find θ: Since (3,4) is in the first quadrant, we just evaluate the inverse tangent: tanθ=34 θ=arctan(34)≈0.93 radians (or 53.1∘)
Answer: The polar coordinates are approximately (5,0.93).
Example 2: Polar to Rectangular
Problem: Convert the polar coordinates (5,3π) to rectangular coordinates.
- Find x: x=5cos(3π)=5(21)=25
- Find y: y=5sin(3π)=5(23)=253
Answer: The rectangular coordinates are (25,253).