Let's see how to find the length of a curve, using the same process of slicing, approximating, and integrating that we've used to find areas and volumes.
1. Slice
Here's a curve that connects two points, A and B. We can approximate this curve with a straight line, but it's not a great approximation. If, however, we split the interval in half and use two line segments, the approximation gets better. Of course, if we use more line segments, the approximation is even better, and if we let the number of segments go to infinity, we'll find the exact length of the curve.
To start, find the length of a single segment.
This length d can be found using the distance formula (as the hypotenuse of a right triangle with sides x2−x1 and y2−y1):
d=(x2−x1)2+(y2−y1)2=(Δx)2+(Δy)2=(Δx)2(1+(Δx)2(Δy)2)=1+(Δx)2(Δy)2Δx
2. Approximate
The total length of all these segments is
L=i=1∑n1+(Δx)2(Δy)2Δx
3. Integrate
As n→∞, the deltas turn into differentials:
L=∫ab1+(dxdy)2dx=∫ab1+(f′(x))2dx
Find the length of the curve f(x)=x3/2 on the interval [0,4].
Solution
All we have to do is find f′(x) and plug it into the arc length formula:
f′(x)L=23x1/2=∫ab1+(f′(x))2dx=∫041+(23x1/2)2dx=∫041+49xdx
We can evaluate this integral using u-substitution, where
u=1+49x⟶du=49dx⟶94du=dx∫041+49xdx=∫11094udu=278u3/2∣∣∣∣110≈9.1
Find the length of the curve f(x)=x3 on the interval [−2,4].
L=∫−241+(3x2)2dx=∫−241+9x4dx≈73.3 (using a computer to do numerical integration)