How to find arc length

The arc length of a curve is found by integrating the differential of arc length over a specified interval. This method applies to smooth curves where the derivative of the function is continuous on the interval of integration.

The setup

For a curve defined by y=f(x)y = f(x) from x=ax = a to x=bx = b, the arc length LL is given by L=ab1+[f(x)]2dxL = \int_a^b \sqrt{1 + [f'(x)]^2} dx. If the curve is instead defined by x=g(y)x = g(y) from y=cy = c to y=dy = d, use L=cd1+[g(y)]2dyL = \int_c^d \sqrt{1 + [g'(y)]^2} dy.

The steps

  1. Identify the function and the interval of integration. 2. Compute the first derivative of the function. 3. Square the derivative and add 1. 4. Set up the integral by taking the square root of the result from step 3. 5. Evaluate the definite integral.

Checking the result

Compare the calculated arc length to the straight-line distance between the endpoints, which is (ba)2+(f(b)f(a))2\sqrt{(b-a)^2 + (f(b)-f(a))^2}. The arc length must be greater than or equal to this straight-line distance.

Common errors

A frequent error is forgetting to square the derivative before adding 1. Another common mistake is incorrectly expanding squares or failing to recognize when an integral requires numerical approximation because the square root expression is algebraically intractable.

Worked example

Find the arc length of y=23x3/2y = \frac{2}{3}x^{3/2} from x=0x = 0 to x=3x = 3.

  1. Identify f(x)=23x3/2f(x) = \frac{2}{3}x^{3/2} on [0,3][0, 3]. 2. Compute the derivative: f(x)=x1/2f'(x) = x^{1/2}. 3. Square and add one: 1+[f(x)]2=1+x1 + [f'(x)]^2 = 1 + x. 4. Set up the integral: L=031+xdxL = \int_0^3 \sqrt{1 + x} dx. 5. Evaluate the integral using substitution u=1+xu = 1 + x, du=dxdu = dx. The limits change to u(0)=1u(0)=1 and u(3)=4u(3)=4. L=14u1/2du=[23u3/2]14=23(43/213/2)=23(81)=143L = \int_1^4 u^{1/2} du = [\frac{2}{3}u^{3/2}]_1^4 = \frac{2}{3}(4^{3/2} - 1^{3/2}) = \frac{2}{3}(8 - 1) = \frac{14}{3}.

FAQ

Run your own problem

References: Calculus: Early Transcendentals by James Stewart · OpenStax Calculus Volume 2

See also