The arc length formula allows us to calculate the length of a curve between two points. By summing up infinitely many tiny straight line segments (using the Pythagorean theorem), we derive an integral that gives the exact length. This is a BC Calculus topic.

🎯 In this section you will learn

📌 The Arc Length Formula

$$ L = \int_a^b \sqrt{1 + \left(\frac{dy}{dx}\right)^2} \, dx = \int_a^b \sqrt{1 + [f'(x)]^2} \, dx $$
Length of the curve $y = f(x)$ from $x=a$ to $x=b$
💡 Derivation

On a small interval $dx$, the change in $y$ is $dy = f'(x) dx$. The small arc length $ds$ is approximately $\sqrt{dx^2 + dy^2} = \sqrt{1 + (dy/dx)^2} dx$. Summing (integrating) gives the total length.

📊 Visualizing Arc Length

Interactive graph below. The curve length is approximated by the sum of small straight segments:

Example 1Arc Length of a Linear Function

Find the arc length of $f(x) = 2x + 1$ from $x=0$ to $x=3$.

Find $f'(x)$
$f'(x) = 2$
Set up the integral
$L = \int_0^3 \sqrt{1 + (2)^2} dx = \int_0^3 \sqrt{5} dx$
Evaluate
$L = \sqrt{5} \cdot 3 = 3\sqrt{5} \approx 6.708$
Example 2Arc Length of a Parabola

Find the arc length of $f(x) = x^2$ from $x=0$ to $x=1$.

Find $f'(x)$
$f'(x) = 2x$
Set up the integral
$L = \int_0^1 \sqrt{1 + (2x)^2} dx = \int_0^1 \sqrt{1 + 4x^2} dx$
Evaluate (using formula or trig substitution)
$\int \sqrt{1+4x^2} dx = \frac{x}{2}\sqrt{1+4x^2} + \frac{1}{4}\ln\left|2x + \sqrt{1+4x^2}\right| + C$
$L = \left[\frac{x}{2}\sqrt{1+4x^2} + \frac{1}{4}\ln\left(2x + \sqrt{1+4x^2}\right)\right]_0^1$
$= \frac{1}{2}\sqrt{5} + \frac{1}{4}\ln(2+\sqrt{5}) - 0 \approx 1.4789$
Example 3Arc Length with $x = g(y)$

Find the arc length of $f(x) = x^{2/3}$ from $x=0$ to $x=8$.

Find $f'(x)$
$f'(x) = \frac{2}{3}x^{-1/3}$
Set up the integral
$L = \int_0^8 \sqrt{1 + \frac{4}{9}x^{-2/3}} dx$ — this integral is messy in terms of $x$.
Rewrite in terms of $y$
$y = x^{2/3}$ ⇒ $x = y^{3/2}$, $dx = \frac{3}{2} y^{1/2} dy$
Limits: when $x=0$, $y=0$; when $x=8$, $y=4$
Arc length formula in terms of $y$
$L = \int_c^d \sqrt{1 + \left(\frac{dx}{dy}\right)^2} dy = \int_0^4 \sqrt{1 + \left(\frac{3}{2} y^{1/2}\right)^2} dy = \int_0^4 \sqrt{1 + \frac{9}{4} y} dy$
Evaluate
Let $u = 1 + \frac{9}{4} y$, $du = \frac{9}{4} dy$ ⇒ $dy = \frac{4}{9} du$
When $y=0$, $u=1$; when $y=4$, $u=10$
$L = \int_1^{10} \sqrt{u} \cdot \frac{4}{9} du = \frac{4}{9} \cdot \frac{2}{3} [u^{3/2}]_1^{10} = \frac{8}{27}(10\sqrt{10} - 1)$
Example 4Arc Length of Sine

Find the arc length of $f(x) = \sin x$ from $x=0$ to $x=2\pi$.

⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page