Free for students · Ad-free · WCAG 2.1 AA Compliant · Accessibility

Polar Function Graphs

Lesson ~9 min read 8 MCQs

In simple terms: 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.

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];
This flowchart shows the step-by-step process for plotting a single point (r, θ) from a polar function. It starts by choosing an angle θ and calculating r. It then branches based on whether r is negative. If r is negative, one must face the opposite direction (θ + π) and move forward. If r is positive, one faces direction θ and moves forward. Both paths lead to plotting the final point.

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 θ.
  • r is the radius, or the directed distance from the origin (which we call the pole). After you've turned to face angle θ, you move r units 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.

  • Input
    The angle, θ. This is our independent variable.
  • Output
    The 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) 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)
π 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 , we'll trace the other two petals of our "rose."

  • At θ = 5π/4, r will be 0.
  • At θ = 3π/2, r will be -3 again, plotting a point up at (3, π/2).
  • At θ = 2π, we get r = 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.

A four-petal rose curve on a polar grid, showing the path traced as theta increases.

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 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.

Plotting points for the four-petal rose r = 3 cos(2θ).

Worked examples

Example 1

Graphing a Circle

Problem: Construct the graph of the polar function r = -5.

Solution:

  1. 1
    Analyze the function
    The equation is r = -5. Notice that θ is not in the equation. This means that r is always -5, no matter what the angle θ is.
  2. 2
    Test 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.
  3. 3
    Identify the pattern
    No 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.
  4. 4
    Construct the graph
    The 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).
Example 2

Graphing a Cardioid

Problem: Construct the graph of r = 2 + 2 sin(θ) on the interval 0 ≤ θ ≤ 2π.

Solution:

  1. 1
    Analyze the function
    This is a cardioid, which looks like a heart shape. Let's build a table for the key quadrantal angles.
  2. 2
    Create 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)
0 2 (2, 2π)
  1. 1
    Plot and connect the points
    • Start at (2, 0) on the positive x-axis.
    • As θ moves to π/2, the sin(θ) term becomes positive, so r increases. The graph curves up to its maximum distance of 4 at the top, at (4, π/2).
    • From π/2 to π, sin(θ) decreases from 1 to 0, so r shrinks back to 2. The graph curves back inward, hitting (2, π) on the negative x-axis.
    • From π to 3π/2, sin(θ) becomes negative. r decreases 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π/2 to , sin(θ) goes from -1 back to 0, so r increases from 0 back to 2, returning to our starting point.
  2. 2
    Draw the final curve
    Connecting these points in order gives you a cardioid, symmetric across the y-axis, with its cusp at the origin.
The graph of r = -5, a circle of radius 5.
The graph of the cardioid r = 2 + 2 sin(θ).

Try it yourself

Ready to try a couple on your own? Grab some graph paper (or just sketch on a polar grid).

  1. 1
    Graph 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.
  2. 2
    Graph the spiral
    r = (1/2)θ for 0 ≤ θ ≤ 2π
    • Hint: This one is different! As the angle θ increases, the radius r also 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.
The graph of the spiral r = (1/2)θ for 0 ≤ θ ≤ 2π.