Topic 10 Further Applications of Integration
10.1 Arc Lengths and Areas of Surfaces of Revolutions
Arc length:
The length of an arc: , is
Surface area of a revolution
The area of the surface rotating an arc: , about the -axis is and about the -axis is where The integral limits depend on whether you use or 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 Plot 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 about the -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 Plot together with the arc length function in the same coordinate system.
Exercise 10.2 Plot the surface obtained by rotating the curve defined by about the -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