Topic 10 Further Applications of Integration

10.1 Arc Lengths and Areas of Surfaces of Revolutions

  • Arc length:

    The length L of an arc: y=f(x), axb is L=ab1+(dydx)2 dx=f(a)f(b)1+(dydx)2 dy.

  • Surface area of a revolution

    The area S of the surface rotating an arc: y=f(x), axb about the x-axis is S=2πrds=2πyds, and about the y-axis is S=2πrds=2πxds, where ds=1+(dydx)2 dx=1+(dydx)2 dy. The integral limits depend on whether you use dx or dy in the integral.

In Maple, the package Student[Calculus1] provides commands to investigate arc length and surface area of revolutions: ArcLength(f(x), x = a..b, opts)} SurfaceOfRevolution(f(x), x = a..b, opts)}

Example 10.1 Set up an integral and evaluate the integral for the length of the curve defined by f(x)=x,1x4. Plot f(x) together with the arc length function in the same coordinate system.

Solution.

# Load the package

with(Student[Calculus1])

# Set up an integral

ArcLength(sqrt(x),x=1..4,output=integral)

# Evaluate the integral

ArcLength(sqrt(x),x=1..4)

# Plot the function and the arc length function

ArcLength(sqrt(x), x=1..4, output=plot)

Example 10.2 Set up an integral and evaluate the integral for the area of the surface obtained by rotating the curve defined by f(x)=x,1x4 about the y-axis. Plot the surface of the revolution.

Solution.

# Load the package (skip if the package was already loaded)

with(Student[Calculus1])

# Plot the surface

SurfaceOfRevolution(sqrt(x), x=1..4, output=plot, axis=vertical)

# Set up an integral

SurfaceOfRevolution(sqrt(x),x=1..4,output=integral, axis=vertical)

# Evaluate the integral

SurfaceOfRevolution(sqrt(x),x=1..4, axis=vertical)

Exercise 10.1 Set up an integral and evaluate the integral for the length of the arc defined by f(x)=lnx,1x2. Plot f(x) together with the arc length function in the same coordinate system.

Exercise 10.2 Plot the surface obtained by rotating the curve defined by f(x)=cosxx,0x4π about the y-axis. Set up an integral for the area of the surface.

Exercise 10.3 Find the area of the surface obtained by rotating the curve defined by f(x)=1+x2,0x3.