Polar Function Graphs
Why this matters
Imagine you’re operating a fancy sprinkler system for a large, circular garden in a city park, maybe like the Rose Garden in Boston. You don't tell the sprinkler to go "three feet right and four feet up." Instead, you give it two commands: "turn to face this direction" (an angle) and "spray water this far" (a distance). As the sprinkler head rotates, you can program the water distance to change, creating specific patterns on the lawn.
That's the core idea behind polar graphing. We're leaving the familiar (x, y) grid behind for a new system that's all about angles and distances. This lets us graph beautiful, complex shapes like spirals and flowers with surprisingly simple equations. In this lesson, we'll learn how to translate those equations into graphs, point by point, just like programming that sprinkler to water the garden perfectly.
Concept overview
flowchart TD
A[Start: Choose a value for θ] --> B{Calculate r = f(θ)};
B --> C{Is r < 0?};
C -- Yes --> D[Face angle θ + π<br>Move forward by |r|];
C -- No --> E[Face angle θ<br>Move forward by r];
D --> F[Plot the point (r, θ)];
E --> F;
F --> G[End: Point is plotted];
Core explanation
So far in your math journey, you've lived on the Cartesian plane. To plot a point like (3, 4), you start at the origin, move 3 units right, and 4 units up. Simple and effective.
Polar coordinates give us a different way to find our location. Every point is defined by an ordered pair (r, θ).
θ(theta) is the angle. Think of it as a direction. You start by facing along the positive x-axis (we call this the polar axis) and then rotate counter-clockwise by angleθ.ris the radius, or the directed distance from the origin (which we call the pole). After you've turned to face angleθ, you moverunits straight ahead.
From Points to Functions
Just like we have functions y = f(x) in the Cartesian world, we have functions r = f(θ) in the polar world.
- InputThe angle,
θ. This is our independent variable. - OutputThe radius,
r. This is our dependent variable.
The function is a rule that tells you how far to move from the origin (r) for any direction you're facing (θ).
Let's Graph One: The Four-Petal Rose
Let's build the graph for a classic polar function: r = 3 cos(2θ). The best way to do this is to test some key angles for θ and see what r values we get. We'll make a table, just like you did when you first learned to graph y = x².
θ (Angle) |
2θ |
cos(2θ) |
r = 3 cos(2θ) |
What it means |
|---|---|---|---|---|
| 0 | 0 | 1 | 3 | Face 0°, walk 3 units forward. Point: (3, 0) |
| π/4 | π/2 | 0 | 0 | Face 45°, walk 0 units. Point: (0, π/4) (at the origin) |
| π/2 | π | -1 | -3 | Face 90°, walk 3 units backward. Point: (-3, π/2) |
| 3π/4 | 3π/2 | 0 | 0 | Face 135°, walk 0 units. Point: (0, 3π/4) (at the origin) |
| π | 2π | 1 | 3 | Face 180°, walk 3 units forward. Point: (3, π) |
Let's pause on that θ = π/2 result. This is where most students get stuck.
A negative r value means you move in the exact opposite direction of θ. So for (-3, π/2), you first rotate to face π/2 (straight up the y-axis). Then, because r is -3, you walk 3 units backward. This lands you at the same spot as (3, 3π/2). It's a critical rule: the point (-r, θ) is the same as (r, θ + π).
If we continue plotting points for θ from π to 2π, we'll trace the other two petals of our "rose."
- At
θ = 5π/4,rwill be0. - At
θ = 3π/2,rwill be-3again, plotting a point up at(3, π/2). - At
θ = 2π, we getr = 3, bringing us right back to our starting point.
As you connect these points in the order of increasing θ, a shape emerges. You don't just connect the dots randomly; you trace the path as θ sweeps around the circle. For r = 3 cos(2θ), this path creates a beautiful four-petaled flower.

Restricting the Domain
What if the problem asked you to graph r = 3 cos(2θ) but only for 0 ≤ θ ≤ π/2?
This is like telling our sprinkler to only sweep a quarter-turn. Looking at our table, this domain restriction means we would only plot the part of the curve from (3, 0) to the origin at (0, π/4), and then down to (-3, π/2). This traces out the top-right petal and the bottom-left petal. Wait, two petals for a quarter of the domain? Yes, because of the 2θ inside the cosine function, the graph gets drawn "faster" than you might expect.
Being able to graph a function over a specific interval of θ is a key skill. It's just like graphing a piece of a parabola, but on a circular grid. The process is the same: plug in the start and end θ values, check a few points in between, and connect them in order.
Worked examples
Graphing a Circle
Problem: Construct the graph of the polar function r = -5.
Solution:
- 1Analyze the functionThe equation is
r = -5. Notice thatθis not in the equation. This means thatris always -5, no matter what the angleθis. - 2Test some points
- If
θ = 0,r = -5. To plot(-5, 0), we face along the positive x-axis and walk 5 units backward. This lands us at the point(5, π)on the negative x-axis. - If
θ = π/2,r = -5. To plot(-5, π/2), we face straight up the y-axis and walk 5 units backward. This lands us at(5, 3π/2)on the negative y-axis. - If
θ = π,r = -5. To plot(-5, π), we face the negative x-axis and walk 5 units backward. This lands us at(5, 0)on the positive x-axis.
- If
- 3Identify the patternNo matter which direction
θwe face, we always end up 5 units away from the origin. The negative sign just flips our position to the opposite side of the circle. - 4Construct the graphThe set of all points that are 5 units from the origin is a circle with a radius of 5, centered at the pole
(0, 0).
Graphing a Cardioid
Problem: Construct the graph of r = 2 + 2 sin(θ) on the interval 0 ≤ θ ≤ 2π.
Solution:
- 1Analyze the functionThis is a cardioid, which looks like a heart shape. Let's build a table for the key quadrantal angles.
- 2Create a table of values
θ |
sin(θ) |
r = 2 + 2 sin(θ) |
Point (r, θ) |
|---|---|---|---|
| 0 | 0 | 2 | (2, 0) |
| π/2 | 1 | 4 | (4, π/2) |
| π | 0 | 2 | (2, π) |
| 3π/2 | -1 | 0 | (0, 3π/2) |
| 2π | 0 | 2 | (2, 2π) |
- 1Plot and connect the points
- Start at
(2, 0)on the positive x-axis. - As
θmoves toπ/2, thesin(θ)term becomes positive, sorincreases. The graph curves up to its maximum distance of 4 at the top, at(4, π/2). - From
π/2toπ,sin(θ)decreases from 1 to 0, sorshrinks back to 2. The graph curves back inward, hitting(2, π)on the negative x-axis. - From
πto3π/2,sin(θ)becomes negative.rdecreases from 2 down to 0. The graph curves into the origin, creating the "cusp" or point of the heart shape at(0, 3π/2). - From
3π/2to2π,sin(θ)goes from -1 back to 0, sorincreases from 0 back to 2, returning to our starting point.
- Start at
- 2Draw the final curveConnecting these points in order gives you a cardioid, symmetric across the y-axis, with its cusp at the origin.
Try it yourself
Ready to try a couple on your own? Grab some graph paper (or just sketch on a polar grid).
- 1Graph the cardioid
r = 3 - 3 cos(θ)- Hint: This will be similar to the cardioid in our example, but because of
cos(θ)and the minus sign, it will be oriented differently. Where do you think the "cusp" will be? Make a table forθ = 0, π/2, π, 3π/2.
- Hint: This will be similar to the cardioid in our example, but because of
- 2Graph the spiral
r = (1/2)θfor0 ≤ θ ≤ 2π- Hint: This one is different! As the angle
θincreases, the radiusralso increases steadily. What happens atθ=0? What about atθ=π? The point will be(π/2, π). Don't be afraid of irrational numbers in your coordinates! Just approximate the distance.
- Hint: This one is different! As the angle
Practice — 8 questions
In simple terms, graphing polar functions is about plotting points using an angle and a distance from the center, instead of the usual left/right and up/down grid, to create unique curves like circles, hearts, and flowers.
- 3.14.A: Construct graphs of polar functions.
- 3.14.A.1
- The graph of the function r = f (θ) in polar coordinates consists of input-output pairs of values where the input values are angle measures and the output values are radii.
- 3.14.A.2
- The domain of the polar function r = f(θ), given graphically, can be restricted to a desired portion of the function by selecting endpoints corresponding to the desired angle and radius.
- 3.14.A.3
- When graphing polar functions in the form of r = f(θ), changes in input values correspond to changes in angle measure from the positive x-axis, and changes in output values correspond to changes in distance from the origin.
flowchart TD
A[Start: Choose a value for θ] --> B{Calculate r = f(θ)};
B --> C{Is r < 0?};
C -- Yes --> D[Face angle θ + π<br>Move forward by |r|];
C -- No --> E[Face angle θ<br>Move forward by r];
D --> F[Plot the point (r, θ)];
E --> F;
F --> G[End: Point is plotted];
Read what Saavi narrates
Hey everyone, it's Saavi. Let's talk about something that can feel a little strange at first, but is actually super cool: polar graphing.
Imagine you’re in a city park, controlling a high-tech sprinkler. You don't tell it to go "three feet right and four feet up." That's old-school. Instead, you give it two commands: "turn to face *this* direction"—that's your angle—and "spray water *this* far"—that's your distance. By changing the distance as the sprinkler turns, you can create all sorts of patterns.
That's exactly what we're doing with polar graphs. We're moving away from the `(x, y)` grid to a new system based on an angle, theta, and a radius, r. The function, written as r equals f of theta, is our set of instructions. It tells us the distance, r, for any given angle, theta.
Let's try one together, a classic called a four-petal rose: r equals 3 times cosine of 2-theta.
We'll just test a few angles.
When theta is 0, cosine of 0 is 1. So, r is 3 times 1, which is 3. Our first point is at an angle of 0, and a distance of 3. Easy enough.
Now, let's try theta equals pi over 2, or 90 degrees. The function is r equals 3 times cosine of 2 times pi over 2. The twos cancel, so we have 3 times cosine of pi. Cosine of pi is negative 1. So r is negative 3.
Okay, pause. This is the part that trips everyone up. A negative radius. What does that even mean? It means you walk backward. So, you face the direction pi over 2... that's straight up. But instead of walking forward, you walk 3 units backward. That lands you down on the negative y-axis. This one rule is the key to getting these graphs right.
If you keep plotting points, you'll see a beautiful four-petaled flower emerge. It's all about taking it one point at a time, and always remembering what to do with those negative r-values.
As you practice, you'll start to see these patterns everywhere. You've got this. Take your time, make a table, and trace the path. I'll see you in the next one.
Polar and Cartesian are different coordinate systems. `(r, θ)` means "face angle `θ`, then move `r` units."
For `(4, π/2)`, rotate your perspective by `π/2` (90 degrees counter-clockwise) to face up. Then, move 4 units straight from the origin in that direction.
A negative `r` means you walk *backward* from the direction you are facing.
First, face the direction `θ = π/4`. Then, walk 3 units in the exact opposite direction. This lands you in the third quadrant, at the same location as `(3, 5π/4)`.
The graph `r = f(θ)` represents a continuous path traced as `θ` increases. Connecting them out of order creates a completely different shape and doesn't represent the function's behavior.
Always plot points in order of `θ`. If you plot `θ=0`, `θ=π/2`, and `θ=π`, you must draw the curve from the first point, to the second, to the third.
Some functions, like our rose curve `r = 3 cos(2θ)`, require a full `0` to `2π` rotation to trace all the petals. Others, like `r = sin(θ/2)`, might need even more.
Always check a full `0` to `2π` interval unless the domain is restricted. For functions with `nθ` where `n` is an even integer, you'll need `2π` to complete the graph.