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

Rates of Change in Polar Functions

Lesson ~11 min read 8 MCQs

In simple terms: In simple terms, this topic is about describing how a point on a polar graph moves closer to or farther from the center (the origin) as the angle changes, and how to calculate the speed of that movement.

Why this matters

Imagine you're at a huge Fourth of July fireworks show in a big field, like in Millennium Park in Chicago. You're standing at the center, looking up. A single, special drone with a bright light is part of the show, flying a pre-programmed path. As it zips around, sometimes it's directly overhead and very close, and other times it's far out at the edge of the field.

Your position is the "origin." The drone's path is a polar curve. The angle you turn your head to follow it is θ, and its distance from you is r.

How do we describe its flight? Is it moving toward you or away from you at any given moment? And how fast is its distance from you changing? In this lesson, we'll learn the exact language and math to answer those questions for any polar function.

A Cartesian plot of r vs. θ reveals the distance behavior of a polar curve.

Concept overview

flowchart TD
    A[Start: Analyze r = f(θ) on an interval] --> B{Is r > 0 on the interval?};
    B -->|Yes| C{Is f(θ) increasing?};
    B -->|No (r < 0)| D{Is f(θ) increasing?};
    C -->|Yes| E[Moving AWAY from origin];
    C -->|No| F[Moving TOWARD origin];
    D -->|Yes| G[Moving TOWARD origin];
    D -->|No| H[Moving AWAY from origin];
This diagram shows a flowchart for determining if a point on a polar graph is moving toward or away from the origin. The path splits based on whether the radius, r, is positive or negative, and then splits again based on whether the function is increasing or decreasing, leading to four possible outcomes.
The polar curve r = 1 + 2sin(θ) traces a limaçon with an inner loop.

Core explanation

Hello! I'm Saavi, and I'm so glad you're here. Today, we're diving into the movement and flow of polar graphs. It might seem abstract, but it's all about connecting a few key ideas.

The Secret: Think in Two Graphs

The absolute key to understanding the behavior of a polar graph, like r = 1 + 2sin(θ), is to first look at its simple, Cartesian graph. That is, just plot r on the y-axis and θ on the x-axis, like you've been doing for years. This simple graph holds all the secrets to the fancy polar one.

Imagine our drone from the fireworks show. The Cartesian graph tells the drone's operator its instructions: "At angle θ, your distance from the center r should be this much." The polar graph is the path the drone actually flies.

Moving Toward or Away from the Origin?

Let's use a simple analogy: a tetherball. The pole is the origin. The length of the rope is r, and the angle it has swung is θ.

Case 1: The rope is out (r is positive)

  • If you're letting the rope out (the r vs. θ graph is increasing), the ball is moving away from the pole.
  • If you're pulling the rope in (the r vs. θ graph is decreasing), the ball is moving toward the pole.
When r is positive, increasing r means moving away, decreasing r means moving toward.

Simple enough, right? Now for the part that requires your full attention.

Case 2: The tricky part (r is negative)

A negative r value means we plot the point in the exact opposite direction. If the angle is θ, we face that direction but take |r| steps backward.

  • If r is negative and increasing (e.g., going from -3 to -2), its magnitude is getting smaller. You're taking fewer steps backward. So, the point is moving toward the origin.
  • If r is negative and decreasing (e.g., going from -2 to -3), its magnitude is getting larger. You're taking more steps backward. So, the point is moving away from the origin.
When r is negative, increasing r (less negative) means moving toward, decreasing r (more negative) means moving away.

The Rule of Thumb: The true distance from the origin is always the absolute value of r, or |r|. The question "Is the point moving toward or away from the origin?" is really asking, "Is |r| increasing or decreasing?"

Finding the Farthest and Closest Points

What happens when the r vs. θ graph changes from increasing to decreasing? It creates a peak, or a local maximum. On the polar graph, this corresponds to a point that is momentarily the farthest it gets from the origin in that neighborhood.

Conversely, when the r vs. θ graph changes from decreasing to increasing, it creates a valley, or a local minimum. This corresponds to a point on the polar graph that is momentarily the closest it gets to the origin.

These are called relative extrema—the relatively farthest or closest points on the curve. For our function r = 1 + 2sin(θ), the r value reaches its absolute maximum of 3 when θ = π/2. This is the point on the entire graph that is farthest from the origin.

Calculating the Average Rate of Change

Okay, so we know if the point is moving toward or away from the origin. But how fast?

The average rate of change of r with respect to θ tells us this. And here's the good news: it's just the slope formula you already know!

For a function r = f(θ) over the interval [θ₁, θ₂], the average rate of change is:

Average Rate of Change = (change in r) / (change in θ) = (f(θ₂) - f(θ₁)) / (θ₂ - θ₁)

The result tells you, on average, how many units the radius r changed for every one radian the graph turned.

  • A positive rate of change means, on average, the point was moving away from the origin on that interval.
  • A negative rate of change means, on average, the point was moving toward the origin on that interval.

Using Rates to Estimate Values

We can also use this average rate of change for estimations. It's a form of linear approximation. If you know the rate of change on an interval [θ₁, θ₂], you can estimate the value of r at some new angle θ_new inside that interval.

r(θ_new) ≈ r(θ₁) + (Average Rate of Change) * (θ_new - θ₁)

This is just like saying, "Start at your known point, and then add the average change for the small step you're taking." It's a powerful tool for when you don't have a calculator and need a quick, reasonable approximation.

Worked examples

Let's walk through some problems together using the polar function r = f(θ) = 1 + 2sin(θ). This is a classic curve called a limaçon with an inner loop.


Example 1

Analyzing movement and calculating rate

Problem: Consider the function r = 1 + 2sin(θ) on the interval [0, π/2]. a) Is the point on the graph moving toward or away from the origin? b) What is the average rate of change of r with respect to θ on this interval?

Solution:

Part (a): Direction of Movement

  1. Analyze r: First, let's check the sign of r on this interval. At θ = 0, r = 1 + 2sin(0) = 1. At θ = π/2, r = 1 + 2sin(π/2) = 1 + 2(1) = 3. Since sin(θ) is positive between 0 and π/2, r will be positive on this entire interval.
  2. Analyze Increase/Decrease: As θ goes from 0 to π/2, sin(θ) increases from 0 to 1. This means r = 1 + 2sin(θ) is also increasing (from 1 to 3).
  3. Conclusion: Since r is positive and increasing, the point on the graph is moving away from the origin.

Part (b): Average Rate of Change

  1. 1
    Recall the Formula
    The formula is (f(θ₂) - f(θ₁)) / (θ₂ - θ₁).
  2. 2
    Identify Values
    • θ₁ = 0, f(θ₁) = 1
    • θ₂ = π/2, f(θ₂) = 3
  3. 3
    Plug and Chug
    Average Rate = (3 - 1) / (π/2 - 0) Average Rate = 2 / (π/2) Average Rate = 4/π
  4. 4
    Interpret the Result
    The average rate of change is 4/π. This is a positive number, which confirms our finding in part (a) that the point is, on average, moving away from the origin. It moves away at an average rate of 4/π distance units for every radian of rotation.

Example 2

The Tricky Negative Case

Problem: Now, let's analyze r = 1 + 2sin(θ) on the interval [π, 3π/2]. Is the point moving toward or away from the origin?

Solution:

  1. Analyze r:
    • At θ = π, r = 1 + 2sin(π) = 1 + 2(0) = 1.
    • At θ = 7π/6 (which is in the interval), r = 1 + 2sin(7π/6) = 1 + 2(-1/2) = 0.
    • At θ = 3π/2, r = 1 + 2sin(3π/2) = 1 + 2(-1) = -1. So, on this interval, r starts at 1, passes through 0, and ends at -1.
  2. Analyze Increase/Decrease: As θ goes from π to 3π/2, sin(θ) decreases from 0 to -1. Therefore, r = 1 + 2sin(θ) is decreasing on the entire interval [π, 3π/2].
  3. Conclusion - This is the key insight!
    • On the sub-interval [π, 7π/6], r is positive and decreasing (from 1 to 0). So, the point is moving toward the origin.
    • On the sub-interval [7π/6, 3π/2], r is negative and decreasing (from 0 to -1). When r is negative and decreasing, the point is moving away from the origin. (Remember, its distance |r| is increasing from 0 to 1).

Where students get stuck: They see "decreasing" and immediately say "moving toward." You have to check the sign of r! The behavior changes mid-interval.

The Cartesian graph of r = 1 + 2sin(θ) highlights intervals where r is positive/negative and increasing/decreasing.
Visualizing the limaçon's movement: away from the origin in [0, π/2] and away in [π, 3π/2] (due to negative r decreasing).

Try it yourself

Ready to try one on your own? You've got this.

Problem: Consider the polar function r = 2 - 3cos(θ).

  1. Find an interval of θ between 0 and π where the function r is negative and increasing.
  2. Based on your answer to part 1, is the point on the polar graph moving toward or away from the origin on that interval?
  3. Calculate the average rate of change of r with respect to θ on the interval [π/2, 2π/3].

Hints:

  • For part 1, think about when 3cos(θ) would be greater than 2. Sketching the r vs. θ graph can be a huge help!
  • For part 2, remember our rule for when r is negative and increasing.
  • For part 3, you'll need your calculator to find the values of cos(π/2) and cos(2π/3). Be careful with your arithmetic!
The Cartesian graph of r = 2 - 3cos(θ) helps identify intervals for the Try It problem.