Trigonometry and Polar Coordinates
Why this matters
Imagine you're in downtown Boston, trying to give a friend directions to meet you for coffee. You could say, "From the statue, walk three blocks east and then four blocks north." That's a perfectly good set of directions. It uses a grid system, just like the (x, y) coordinates you've used for years. We call this the rectangular coordinate system.
But what if you could just point and say, "Face that direction and walk five blocks"? That's also a perfect set of directions. You've given a distance (five blocks) and an angle (that direction). This is the core idea behind polar coordinates.
Instead of (x, y), we use (r, θ)—a radius and an angle. It's how a radar system tracks a plane or how you'd describe a location on a dartboard. In this lesson, we'll master both systems and learn to translate between them seamlessly.
Concept overview
flowchart TD
A[Start with Rectangular (x, y)] --> B{Find r};
B --> C[r = sqrt(x^2 + y^2)];
A --> D{Find theta};
D --> E[theta_calc = arctan(y/x)];
E --> F{Is x < 0?};
F -- No --> G[theta = theta_calc];
F -- Yes --> H[theta = theta_calc + pi];
C --> I[Combine];
G --> I;
H --> I;
I --> J[End with Polar (r, theta)];
Core explanation
For your entire math career, you've plotted points on the Cartesian plane. You start at the origin (0, 0), move left or right along the x-axis, and then move up or down along the y-axis. This is the rectangular coordinate system. It's like navigating a city grid.
Now, let's introduce a new system: the polar coordinate system.
The Polar Grid: Circles and Spokes
Imagine a dartboard. To describe where a dart landed, you could measure its distance from the bullseye and the angle it's at. That's the polar system.
- The pole is the center point, which is the same as the origin
(0, 0)in the rectangular system. - The polar axis is a ray starting from the pole and going to the right. It's the same as the positive x-axis.
A polar coordinate is an ordered pair (r, θ) where:
ris the radius: the directed distance from the pole to the point.θis the angle: the angle made with the polar axis, measured counter-clockwise.
For example, the point (3, π/2) means you face the π/2 direction (straight up) and move 3 units out from the pole.
One Point, Many Names
Here's the first big difference from the rectangular system. In the (x, y) system, every point has exactly one address. The point (2, 3) is just (2, 3).
In the polar system, a single point can have infinite addresses.
Consider the point (2, π/4).
- You could go all the way around the circle and come back to the same spot. This would be
(2, π/4 + 2π), or(2, 9π/4). - You could also face the opposite direction (
π/4 + π = 5π/4) and walk backwards 2 units. A negative radiusrmeans you walk backward from the direction you're facing. So,(-2, 5π/4)is the exact same point as(2, π/4).
This flexibility is powerful, but it's something you need to watch out for.
Translating Between Systems
The real power comes from being able to convert between rectangular (x, y) and polar (r, θ) coordinates. Let's build the bridge between them.
Imagine a point P on the plane.
- Its rectangular address is
(x, y). - Its polar address is
(r, θ).
If we draw a line from the origin to P, its length is r. If we drop a perpendicular line from P to the x-axis, we form a right triangle.
The sides of this triangle are x and y, and the hypotenuse is r. The angle at the origin is θ. Now we can use basic trigonometry (SOH CAH TOA) to find the conversion formulas.
From Polar (r, θ) to Rectangular (x, y)
This is the more straightforward conversion.
cos(θ) = adjacent / hypotenuse = x / r-->x = r cos(θ)sin(θ) = opposite / hypotenuse = y / r-->y = r sin(θ)
That's it. If you have r and θ, you just plug them in to find x and y.
From Rectangular (x, y) to Polar (r, θ)
Going the other way requires a bit more care.
- From the Pythagorean Theorem,
x² + y² = r². So,r = √(x² + y²). We usually use the positive root forr, but remember that a negativeris also possible. - From SOH CAH TOA,
tan(θ) = opposite / adjacent = y / x. So,θ = arctan(y/x).
Look at the x coordinate to decide:
- If
x > 0(your point is in Q-I or Q-IV), your calculator'sarctan(y/x)result is correct. - If
x < 0(your point is in Q-II or Q-III), you must addπ(or 180°) to your calculator's result to get the correct angle.
For example, for the point (-√3, 1), x is negative. arctan(1/-√3) gives -π/6 (an angle in Q-IV). But we know the point is in Q-II. So we add π: θ = -π/6 + π = 5π/6.
Connection to Complex Numbers
This might seem like a jump, but it's just a new way of labeling the same points. A complex number z = a + bi can be plotted on the complex plane, where the horizontal axis is the "real" axis and the vertical axis is the "imaginary" axis.
The point (a, b) is the same as the complex number a + bi.
So, converting a complex number to its polar form is the exact same process as converting a rectangular coordinate.
ais just ourx.bis just oury.
Using our conversion formulas:
x = r cos(θ) and y = r sin(θ)
We can rewrite a + bi as:
(r cos θ) + i(r sin θ)
This is the polar form of a complex number. It looks complicated, but it's just a direct substitution of the formulas you already know.
Worked examples
Let's walk through a few examples to make this concrete.
Convert Polar to Rectangular
Problem: Convert the polar coordinate (2, 5π/6) to rectangular coordinates.
Step 1: Identify your r and θ.
Here, r = 2 and θ = 5π/6.
Step 2: Use the conversion formulas. The formulas to go from polar to rectangular are:
x = r cos(θ)y = r sin(θ)
Step 3: Substitute and solve.
For x:
x = 2 * cos(5π/6)
From the unit circle, we know cos(5π/6) = -√3/2.
x = 2 * (-√3/2) = -√3
For y:
y = 2 * sin(5π/6)
From the unit circle, we know sin(5π/6) = 1/2.
y = 2 * (1/2) = 1
Convert Rectangular to Polar
Problem: Convert the rectangular coordinate (-4, -4) to polar coordinates (r, θ) with r > 0 and 0 ≤ θ < 2π.
Step 1: Find the radius r.
Use the formula r = √(x² + y²).
r = √((-4)² + (-4)²) = √(16 + 16) = √32
Simplifying the radical, √32 = √(16 * 2) = 4√2.
So, r = 4√2.
Step 2: Find the angle θ.
Use the formula θ = arctan(y/x).
θ = arctan(-4 / -4) = arctan(1)
Step 3: Adjust the angle for the correct quadrant.
A calculator will tell you that arctan(1) = π/4. But wait! The point (-4, -4) is in Quadrant III (negative x, negative y). The angle π/4 is in Quadrant I.
This is the critical step. Because our original x is negative, we must add π to the calculator's result.
θ = π/4 + π = 5π/4
The angle 5π/4 is in Quadrant III, which matches our point.
Express a Complex Number in Polar Form
Problem: Express the complex number z = -√3 + i in polar form.
Step 1: Identify the rectangular coordinates (a, b).
The complex number a + bi corresponds to the point (a, b).
Here, z = -√3 + 1i, so a = -√3 and b = 1. Our point is (-√3, 1).
Step 2: Convert (a, b) to (r, θ).
This is the same process as Example 2.
- Find
r:r = √((-√3)² + 1²) = √(3 + 1) = √4 = 2. - Find
θ:θ = arctan(1 / -√3). The calculator gives-π/6. - Adjust
θ: The point(-√3, 1)is in Quadrant II (xis negative,yis positive). Sincexis negative, we must addπ.θ = -π/6 + π = 5π/6.
Step 3: Write the number in polar form.
The polar form of a complex number is (r cos θ) + i(r sin θ).
Substitute r = 2 and θ = 5π/6.
Try it yourself
Ready to try on your own? Don't worry about getting it perfect on the first try. The goal is to practice the process.
Problem 1: A point has polar coordinates (6, 7π/4). What are its rectangular coordinates?
Problem 2: Convert the rectangular coordinates (-5, 12) to polar coordinates (r, θ), where r > 0 and 0 ≤ θ < 2π.
Practice — 8 questions
In simple terms, polar coordinates are a different way to find a point on a map, using distance and an angle (like on a radar screen) instead of just left/right and up/down.
- 3.13.A: Determine the location of a point in the plane using both rectangular and polar coordinates.
- 3.13.A.1
- The polar coordinate system is based on a grid of circles centered at the origin and on lines through the origin. Polar coordinates are defined as an ordered pair, (r, θ), such that |r| represents the radius of the circle on which the point lies, and θ represents the measure of an angle in standard position whose terminal ray includes the point. In the polar coordinate system, the same point can be represented many ways.
- 3.13.A.2
- The coordinates of a point in the polar coordinate system, (r, θ), can be converted to coordinates in the rectangular coordinate system, (x, y), using x = r cos θ and y = r sin θ.
- 3.13.A.3
- The coordinates of a point in the rectangular coordinate system, (x, y), can be converted to coordinates in the polar coordinate system, (r, θ), using r = √(x² + y²) and θ = arctan(y/x) for x > 0 or θ = arctan(y/x) + π for x < 0.
- 3.13.A.4
- A complex number can be understood as a point in the complex plane and can be determined by its corresponding rectangular or polar coordinates. When the complex number has the rectangular coordinates (a, b), it can be expressed as a + bi. When the complex number has polar coordinates (r, θ), it can be expressed as (r cos θ) + i(r sin θ).
flowchart TD
A[Start with Rectangular (x, y)] --> B{Find r};
B --> C[r = sqrt(x^2 + y^2)];
A --> D{Find theta};
D --> E[theta_calc = arctan(y/x)];
E --> F{Is x < 0?};
F -- No --> G[theta = theta_calc];
F -- Yes --> H[theta = theta_calc + pi];
C --> I[Combine];
G --> I;
H --> I;
I --> J[End with Polar (r, theta)];
Read what Saavi narrates
Hello everyone, this is Saavi from Shrutam.
Imagine you're in downtown Boston, trying to give a friend directions. You could say, "From the statue, walk three blocks east and then four blocks north." That's the rectangular coordinate system we all know, using x and y. But what if you could just point and say, "Face that direction and walk five blocks"? That's a distance and an angle. That's the core idea behind polar coordinates.
Instead of an x and y, we use an r and a theta... a radius and an angle. In this lesson, we'll learn to speak both "languages" and translate between them.
Let's try an example. Say we have the polar coordinate (2, 5 pi over 6). We want to find its rectangular, or (x, y), address. Our r is 2, and our theta is 5 pi over 6.
The formulas are x equals r times cosine of theta, and y equals r times sine of theta.
So for x, we get 2 times cosine of 5 pi over 6. From our unit circle, we know the cosine of 5 pi over 6 is negative root 3 over 2. So, 2 times negative root 3 over 2 gives us an x-value of negative root 3.
For y, we get 2 times sine of 5 pi over 6. The sine of 5 pi over 6 is one-half. So, 2 times one-half gives us a y-value of 1.
Our final rectangular coordinate is (negative root 3, 1). It makes sense... an angle of 5 pi over 6 is in the second quadrant, where x is negative and y is positive.
Now, a very common mistake I see every year is with the arctan function when you're going the other way, from rectangular to polar. Your calculator only gives you answers in Quadrants I and IV. If your point is in Quadrant II or III, where x is negative, you have to add pi to your calculator's answer to get the correct angle. Always, always check which quadrant your original point is in.
This topic feels like learning a new dialect of a language you already speak. It takes a little practice, but soon you'll be switching between polar and rectangular without even thinking about it. You've got this.
The `arctan` function on a calculator only returns angles in Quadrants I and IV. If your point `(x, y)` is in Quadrant II or III (where `x` is negative), the calculator's answer will be off by `π` radians.
Always check the quadrant of your original `(x, y)` point. If `x` is negative, add `π` (or 180°) to the angle you get from `arctan(y/x)`.
A negative angle `(r, -θ)` means you rotate clockwise instead of counter-clockwise. A negative radius `(-r, θ)` means you face the direction `θ` and then walk *backwards* `r` units. The point `(2, -π/4)` is in Q-IV, but `(-2, -π/4)` is in Q-II.
Treat them as two separate instructions. First, find the angle `θ`. Then, move `r` units. If `r` is positive, move forward. If `r` is negative, move backward.
Cosine is fundamentally tied to the horizontal (x-axis) component and sine to the vertical (y-axis) component in the unit circle definition. Swapping them will give you a point reflected across the line `y=x`.
Remember "x comes before y" in the alphabet, and "c comes before s". So `x` goes with `cos`, and `y` goes with `sin`. Or, just re-derive it from SOH CAH TOA on a quick sketch.
Converting from polar to rectangular is impossible without the correct values for `cos(θ)` and `sin(θ)`. A simple sign error on a value like `cos(5π/6)` will put your final point in the wrong quadrant.
Keep your unit circle handy and double-check your values, especially the signs (`+`/`-`) for each quadrant. Practice until they become second nature.