# Arc length and distance traveled (BC only)

> AP Calculus BC · AP Calculus BC
> Source: https://www.owlsprep.com/study/ap-calculus-bc-u8-arc-length-and-distance-traveled/

This module covers the derivation of the Cartesian arc length formula, its extension to parametric curves, and direct application to calculate total distance traveled by moving particles, a high-frequency BC-only exam topic.

**Prerequisites:** [Definite integration of single-variable functions](https://www.owlsprep.com/study/ap-calculus-bc-u6-definite-integrals-fundamental-theorem/); [Parametric curve differentiation rules](https://www.owlsprep.com/study/ap-calculus-bc-u7-parametric-vector-derivatives/)

## Learning objectives

- Derive the arc length formula for a Cartesian function over a closed interval
- Apply the arc length formula to calculate total distance traveled by a moving particle
- Adapt the formula for parametric and polar curve contexts as tested on AP BC exams
- Identify when to use numerical integration to evaluate non-elementary arc length integrals

## Derivation of the Cartesian Arc Length Formula

To calculate the total length of a curve y = f(x) between two points, we split the curve into infinitely many tiny straight segments, each approximated by the hypotenuse of a right triangle with horizontal run dx and vertical rise dy.

$$ds = \sqrt{dx^2 + dy^2} = \sqrt{1 + \left(\frac{dy}{dx}\right)^2} dx$$

**Derivation:** Derive the closed-form arc length formula for y = f(x) on interval [a, b]

*Starting from:* Approximate the curve as n connected line segments

1. Each segment length $\Delta s_i \approx \sqrt{\Delta x_i^2 + \Delta y_i^2}$
2. Factor out $\Delta x_i$: $\Delta s_i \approx \sqrt{1 + \left(\frac{\Delta y_i}{\Delta x_i}\right)^2} \Delta x_i$
3. Take limit as $n \to \infty$, $\Delta x \to 0$, replace difference ratio with derivative
4. Convert the Riemann sum to a definite integral

*Conclusion:* Total arc length $L = \int_a^b \sqrt{1 + (f'(x))^2} dx$

**Worked example:** Calculate the arc length of $f(x) = \frac{2}{3}x^{3/2}$ from $x=0$ to $x=3$

1. Compute the first derivative: $f'(x) = x^{1/2}$
2. Substitute into the arc length formula: $L = \int_0^3 \sqrt{1 + x} dx$
3. Apply u-substitution $u = 1 + x$, $du = dx$, adjust bounds to 1 to 4
4. Evaluate the integral: $\frac{2}{3}u^{3/2} \bigg|_1^4 = \frac{2}{3}(8 - 1) = \frac{14}{3} \approx 4.667$

> **Exam tip:** You will never be asked to fully derive this formula on the AP exam, but you must write it from memory with no reference sheet support.

## Distance Traveled for 1D Particle Motion

**Total Distance Traveled** — Sum of absolute values of all position changes over a time interval, equal to the full path length of the particle's motion, not just net displacement

*Notation:* $D$

*Example:* A particle moving forward 2 units then backward 1 unit travels total distance 3, displacement 1

For a 1D particle with velocity function $v(t)$, total distance traveled from $t=a$ to $t=b$ is calculated by integrating the absolute value of velocity, to account for motion in both positive and negative directions.

**Worked example:** A particle moves along the x-axis with velocity $v(t) = t^2 - 4t + 3$ for $0 \leq t \leq 4$. Calculate total distance traveled.

1. Factor velocity: $v(t) = (t-1)(t-3)$, identify sign changes at $t=1$ and $t=3$
2. Split the absolute value integral at sign change points: $D = \int_0^1 v(t) dt + \int_1^3 -v(t) dt + \int_3^4 v(t) dt$
3. Evaluate each segment individually, flipping sign of negative velocity regions
4. Sum results to get total distance = 4 units

**Check your understanding**

Confirm you can correctly set up a distance integral before moving on

1. For $v(t) = \sin(t)$ on $[0, 2\pi]$, what is the total distance traveled?

   - A) 0
   - B) 2
   - C) 4
   - D) $2\pi$

   *Why:* Integrating absolute value of $\sin(t)$ over the interval gives 4, while net displacement is 0.

## Arc Length for Parametric and Polar Curves

The Cartesian arc length formula is a special case of the general parametric arc length formula, which works for any curve defined by separate x(t) and y(t) position functions. This is the most commonly tested variant on the AP BC exam.

$$L_{\text{parametric}} = \int_a^b \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} dt$$

$$L_{\text{polar}} = \int_\alpha^\beta \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2} d\theta$$

**Worked example:** Find the total circumference of a circle defined parametrically as $x = 3\cos t$, $y = 3\sin t$ for $0 \leq t \leq 2\pi$

1. Compute derivatives: $\frac{dx}{dt} = -3\sin t$, $\frac{dy}{dt} = 3\cos t$
2. Substitute into parametric arc length formula: $L = \int_0^{2\pi} \sqrt{9\sin^2 t + 9\cos^2 t} dt$
3. Simplify using Pythagorean identity: $\sqrt{9(\sin^2 t + \cos^2 t)} = 3$
4. Integrate constant 3 over $0$ to $2\pi$ to get $L = 6\pi$, the correct circumference

> **Exam tip:** Over 90% of AP BC arc length free response questions use parametric curves, not explicit Cartesian functions.

## Numerical Integration for Non-Elementary Integrals

Nearly all real-world arc length integrals cannot be solved analytically with standard antiderivative rules. The AP BC exam explicitly allows you to use your graphing calculator to compute these definite integrals directly, no manual simplification required.

**Exam command terms**

These are the most common command terms you will see for this topic on the exam:

- **Write, but do not evaluate, an integral expression** — You only need to set up the correct arc length integral, no calculation required, points are awarded exclusively for correct integrand and bounds

- **Find the total distance traveled** — You may use your calculator's built-in integral function to compute the final value, no antiderivative steps need to be shown

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Integrating velocity without absolute value to find total distance
  - Why it fails: This calculates net displacement, not total path length, and subtracts backwards motion from forwards motion
  - Correct: Always wrap the velocity function inside absolute value before integrating for total distance
- **Wrong:** Forgetting to square derivatives inside the arc length square root
  - Why it fails: Missing exponents break the Pythagorean derivation of ds and produce drastically incorrect results
  - Correct: Double check that both derivative terms are fully squared before adding them under the radical
- **Wrong:** Using the Cartesian arc length formula directly on a parametric curve
  - Why it fails: This ignores the parameter t and misaligns the derivative ratio, leading to invalid bounds and integrand
  - Correct: Use the dedicated parametric arc length formula for all parameter-defined curves
- **Wrong:** Failing to split the absolute value integral at all velocity sign change points
  - Why it fails: Negative velocity segments will subtract from total distance if their sign is not flipped
  - Correct: Find all roots of v(t) on the interval, split the integral at every single root
- **Wrong:** Wasting time attempting to compute non-elementary arc length integrals by hand
  - Why it fails: You will make arithmetic errors and lose time that could be spent on other exam questions
  - Correct: Use your graphing calculator's built-in definite integral function for all non-solvable integrals

## Cheatsheet

| Curve Type | Arc Length Formula | Common AP Exam Context |
| --- | --- | --- |
| Cartesian y=f(x) | $L = \int_a^b \sqrt{1 + (f'(x))^2} dx$ | Rare free response |
| 1D Particle Motion | $D = \int_a^b \|v(t)\| dt$ | Very common particle motion FRQ |
| Parametric Curve | $L = \int_a^b \sqrt{\left(\frac{dx}{dt}\right)^2 + \left(\frac{dy}{dt}\right)^2} dt$ | Most frequent BC exam question |
| Polar Curve | $L = \int_\alpha^\beta \sqrt{r^2 + \left(\frac{dr}{d\theta}\right)^2} d\theta$ | Occasional multiple choice |

## What's next

Mastering arc length and distance traveled will let you tackle 6-9% of your AP Calculus BC exam score, as this topic appears in both multiple choice and the long free response particle motion question almost every year. You will next build on this knowledge to calculate the area bounded by parametric curves, and the area enclosed by polar curves. These connected topics are frequently paired with arc length questions to create multi-part 9-point FRQs that test your ability to move between different integration application contexts quickly. Prioritize practicing integral setup over manual calculation, as this is the most heavily weighted scoring step for this topic.

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-bc-u8-arc-length-and-distance-traveled/
