Math101learn.math101.caPolar Coordinates
Polar coordinates locate a plane point by distance and direction: $(r,\theta)$ means move signed distance $r$ along the ray at angle $\theta$.
Polar coordinates simplify radial curves, rotation, complex multiplication, navigation, and problems with circular symmetry.
Intuition and core definition
Polar coordinates locate a plane point by distance and direction: $(r,\theta)$ means move signed distance $r$ along the ray at angle $\theta$. Unlike Cartesian coordinates, polar representations are not unique: adding full turns or using negative radius with angle shifted by $\pi$ gives the same point.
Notation, language, and conditions
Conversions are $x=r\cos\theta$, $y=r\sin\theta$, and $r^2=x^2+y^2$. When $x\ne0$, $\tan\theta=y/x$ gives a reference value but still needs quadrant correction; $\operatorname{atan2}(y,x)$ also handles $x=0$. Usually $r\ge0$ for a principal representation, but negative $r$ is allowed in general. At the origin, angle is arbitrary.
Why this idea matters
Polar coordinates locate a point by distance and direction, often simplifying geometry organized around a centre or rotation.
A dependable method
- For polar-to-Cartesian, compute cosine and sine components with correct angle units.
- For Cartesian-to-polar, find $r=\sqrt{x^2+y^2}$.
- Determine quadrant from signs of $x,y$ and choose an appropriate argument.
- State the requested range for $\theta$ and whether $r$ must be nonnegative.
- Convert back to check both coordinates.
Worked example
Representations and interpretation
A polar grid uses concentric distance circles and radial angle lines, while a Cartesian grid uses perpendicular coordinate projections. The conversion formulas are exactly the right-triangle component relationships.
Reasoning about variations
$(r,\theta)$, $(r,\theta+2\pi k)$, and $(-r,\theta+(2k+1)\pi)$ represent the same point. For example, $(2,0)=(-2,\pi)$.
Common mistakes
How to check your work
- Verify $x^2+y^2=r^2$.
- Convert back using sine and cosine.
- Plot quadrant and confirm angle and radius direction.
Practice
- Convert $(r,\theta)=(4,\pi/6)$ to Cartesian form.
- Give another polar form for $(3,\pi/4)$.
- Find $r$ for Cartesian point $(-5,12)$.
Answers and brief solutions
Show answers
- $(2\sqrt3,2)$ $x=4\cos(\pi/6)=2\sqrt3$, $y=4\sin(\pi/6)=2$.
- $(3,\pi/4+2\pi)$ Adding a full turn preserves the point.
- $13$ $r=\sqrt{25+144}=13$.
Synthesis and transfer
A radar report gives range and bearing naturally in polar form; resolving it into Cartesian components requires quadrant-aware sine and cosine, while recomputing the radius checks the conversion.
A radar return at range $10$ km and bearing angle $140^\circ$ converts to components $x=10\cos140^\circ$ and $y=10\sin140^\circ$, placing the target in Quadrant II. Squaring and adding the components must return $100$, independent of rounding. Converting back with a one-argument inverse tangent could select the wrong quadrant; $\operatorname{atan2}(y,x)$ uses both signs. The same point also has representations with angle $140^\circ+360^\circ k$, and negative radius can reverse direction by a half-turn. A navigation report should state the chosen angle range so one representative is communicated consistently even though the geometry is not unique.
Related topics
Teaching and accessibility note
Try it yourself
Hints are part of learning. Open one whenever it makes the next step feel possible.
Convert $(r,\theta)=(4,\pi/6)$ to Cartesian form.
- $x=4\cos(\pi/6)=2\sqrt3$, $y=4\sin(\pi/6)=2$.
End of lesson
Nice work making it this far.
Understanding grows through return visits. Save this lesson, try the practice, or continue when you are ready.
