9. Parametric Equations, Polar Coordinates, and Vector-Valued Functions

Finding Arc Lengths Of Curves Given By Parametric Equations

Finding Arc Lengths of Curves Given by Parametric Equations

students, imagine a race car moving on a track that bends and loops ๐ŸŽ๏ธ. Instead of describing the track with a regular $y=f(x)$ equation, we can describe the carโ€™s position with parametric equations like $x=x(t)$ and $y=y(t)$, where $t$ acts like time. One big question in AP Calculus BC is: how far does the car travel along the curve? That distance is called arc length. In this lesson, you will learn how to find arc length for parametric curves, why the formula works, and how this idea connects to motion in the plane, vector-valued functions, and other topics in the course.

What Arc Length Means for Parametric Curves

Arc length is the actual distance traveled along a curve, not just the straight-line distance between endpoints. If you walked from one point to another on a winding path, the arc length is the length of the path itself. For parametric equations, the curve is traced out as the parameter changes.

A parametric curve is written as $x=x(t)$ and $y=y(t)$ for $a\le t\le b$. As $t$ increases, the point $\big(x(t),y(t)\big)$ moves in the plane. The arc length measures how much ground that point covers.

Here is the main idea behind the formula: over a very tiny change in $t$, the movement is almost a tiny straight segment. If the horizontal change is $dx$ and the vertical change is $dy$, then the tiny distance is approximately

$$ds=\sqrt{(dx)^2+(dy)^2}.$$

Because $x$ and $y$ depend on $t$, we rewrite this in terms of $t$:

$$\frac{dx}{dt}=x'(t), \qquad \frac{dy}{dt}=y'(t).$$

So the arc length of a parametric curve from $t=a$ to $t=b$ is

$$L=\int_a^b \sqrt{\left(\frac{dx}{dt}\right)^2+\left(\frac{dy}{dt}\right)^2}\,dt.$$

This is the key formula you need to know. It is based on the Pythagorean Theorem and the idea that very small curve segments act like tiny line segments. โœ…

The Arc Length Formula Step by Step

When you see a parametric curve, follow these steps carefully:

  1. Identify $x(t)$ and $y(t)$.
  2. Differentiate both to find $\frac{dx}{dt}$ and $\frac{dy}{dt}$.
  3. Square each derivative.
  4. Add them.
  5. Take the square root.
  6. Integrate from the starting value of $t$ to the ending value of $t$.

Suppose a curve is given by

$$x=t^2, \qquad y=t^3, \qquad 0\le t\le 1.$$

First find the derivatives:

$$\frac{dx}{dt}=2t, \qquad \frac{dy}{dt}=3t^2.$$

Now substitute into the formula:

$$L=\int_0^1 \sqrt{(2t)^2+(3t^2)^2}\,dt=\int_0^1 \sqrt{4t^2+9t^4}\,dt.$$

You can factor inside the square root:

$$L=\int_0^1 \sqrt{t^2(4+9t^2)}\,dt.$$

Since $t\ge 0$ on $[0,1]$, this becomes

$$L=\int_0^1 t\sqrt{4+9t^2}\,dt.$$

At this point, a substitution may help. Let $u=4+9t^2$, so $du=18t\,dt$. Then

$$L=\frac{1}{18}\int_4^{13} u^{1/2}\,du.$$

This kind of problem shows how arc length combines differentiation and integration in one question.

Why the Formula Works

You do not need to memorize the derivation, but it helps to understand the reason behind it. Think about a tiny change in the parameter, $dt$. The point moves a small amount horizontally, $dx$, and vertically, $dy$. If that tiny movement is almost a straight segment, then the distance is

$$ds=\sqrt{(dx)^2+(dy)^2}.$$

Because $dx=x'(t)\,dt$ and $dy=y'(t)\,dt$, we get

$$ds=\sqrt{(x'(t)\,dt)^2+(y'(t)\,dt)^2}.$$

Factoring out $dt$ gives

$$ds=\sqrt{(x'(t))^2+(y'(t))^2}\,dt.$$

Adding up all those tiny pieces from $t=a$ to $t=b$ gives the integral formula for $L$. This is the same logic used for arc length of graphs of functions, but now it works for curves that may loop, move backward, or fail the vertical line test.

That is one reason parametric equations are powerful: they can describe motion that ordinary $y=f(x)$ functions cannot. For example, a circle can be traced with parametric equations like

$$x=\cos t, \qquad y=\sin t.$$

A standard $y=f(x)$ graph cannot represent a full circle by itself, but parametric equations can.

Example with a Circle

Letโ€™s find the length of the upper half of the unit circle using parametric equations. Suppose

$$x=\cos t, \qquad y=\sin t, \qquad 0\le t\le \pi.$$

Then

$$\frac{dx}{dt}=-\sin t, \qquad \frac{dy}{dt}=\cos t.$$

Substitute into the formula:

$$L=\int_0^\pi \sqrt{(-\sin t)^2+(\cos t)^2}\,dt.$$

Because $\sin^2 t+\cos^2 t=1$,

$$L=\int_0^\pi 1\,dt=\pi.$$

This makes sense because the unit circle has circumference $2\pi$, and the upper half has length $\pi$. ๐ŸŒ™

This example is helpful because the square root becomes simple when the derivatives fit a Pythagorean identity. Sometimes AP Calculus BC problems are designed to make the integrand simplify in a clever way.

Common Mistakes to Avoid

When finding arc length from parametric equations, students, watch out for these mistakes:

  • Forgetting to differentiate both $x(t)$ and $y(t)$.
  • Using the wrong parameter interval, such as integrating from $0$ to $2$ when the problem gives $1\le t\le 3$.
  • Writing $\sqrt{x^2+y^2}$ instead of $\sqrt{\left(\frac{dx}{dt}\right)^2+\left(\frac{dy}{dt}\right)^2}$.
  • Forgetting that the derivatives are squared inside the square root.
  • Dropping the absolute value when simplifying expressions like $\sqrt{t^2}$.

A good habit is to check whether your final answer has the right units and whether it matches the curveโ€™s motion. If the curve is traced faster, the derivatives get larger, but the formula still measures actual distance traveled.

Connection to Vector-Valued Functions and Motion

Parametric equations are closely related to vector-valued functions. A position vector can be written as

$$\mathbf{r}(t)=\langle x(t),y(t)\rangle.$$

The velocity vector is

$$\mathbf{r}'(t)=\langle x'(t),y'(t)\rangle.$$

Its magnitude, called speed, is

$$\|\mathbf{r}'(t)\|=\sqrt{(x'(t))^2+(y'(t))^2}.$$

So the arc length formula can be rewritten as

$$L=\int_a^b \|\mathbf{r}'(t)\|\,dt.$$

This shows a deep connection between distance and motion. The speed tells how fast the point moves, and integrating speed gives total distance traveled. ๐Ÿš—

This is why arc length is also important in physics and engineering. If a drone moves in the plane according to parametric equations, then integrating its speed over time gives the total path length.

A Quick Practice Example

Suppose a particle moves according to

$$x=t^2+1, \qquad y=2t, \qquad 0\le t\le 3.$$

Find the arc length.

First compute derivatives:

$$\frac{dx}{dt}=2t, \qquad \frac{dy}{dt}=2.$$

Now use the formula:

$$L=\int_0^3 \sqrt{(2t)^2+2^2}\,dt=\int_0^3 \sqrt{4t^2+4}\,dt.$$

Factor out $4$:

$$L=\int_0^3 2\sqrt{t^2+1}\,dt.$$

This integral may require a special technique such as a trigonometric substitution or a calculator, depending on the problem setup. On AP Calculus BC, you may be asked to set up the integral, evaluate it exactly when possible, or use a numerical approximation.

The important skill is recognizing the structure of the arc length formula and setting it up correctly.

Conclusion

Finding arc lengths of parametric curves is a major AP Calculus BC skill because it connects derivatives, integrals, and motion in the plane. The essential formula is

$$L=\int_a^b \sqrt{\left(\frac{dx}{dt}\right)^2+\left(\frac{dy}{dt}\right)^2}\,dt.$$

It measures the true distance traveled by a point moving along a curve. This idea fits naturally into parametric equations, vector-valued functions, and motion problems, and it also prepares you for polar arc length later in the unit. If you can identify the parameter, compute derivatives correctly, and set up the integral carefully, you are ready for many AP Calculus BC questions on this topic. ๐ŸŒŸ

Study Notes

  • Arc length measures the actual distance along a curve, not the straight-line distance between endpoints.
  • For parametric equations $x=x(t)$ and $y=y(t)$ on $a\le t\le b$, the arc length formula is $L=\int_a^b \sqrt{\left(\frac{dx}{dt}\right)^2+\left(\frac{dy}{dt}\right)^2}\,dt$.
  • The formula comes from the Pythagorean Theorem applied to tiny changes $dx$ and $dy$.
  • Always differentiate both $x(t)$ and $y(t)$ before substituting into the formula.
  • Arc length is the integral of speed, since $\|\mathbf{r}'(t)\|=\sqrt{(x'(t))^2+(y'(t))^2}$.
  • Parametric equations can describe curves that ordinary functions cannot, such as circles and loops.
  • A common simplification is using identities like $\sin^2 t+\cos^2 t=1$.
  • Common mistakes include using the wrong bounds, forgetting to square derivatives, and simplifying square roots incorrectly.
  • On AP Calculus BC, you may need to set up the integral, simplify it, or evaluate it exactly or numerically.
  • This topic connects directly to vector-valued functions, motion in the plane, and later polar arc length ideas.

Practice Quiz

5 questions to test your understanding

Finding Arc Lengths Of Curves Given By Parametric Equations โ€” AP Calculus BC | A-Warded