Surface Area

The exterior of the Jimi Hendrix Museum in Seattle has the signature style of its architect Frank Gehry. The surface is comprised of patches. A general method to find the amount of material to cover the surface - the surface area - might be to add up the area of the patches. However, in this section we will see for surfaces of revolution, there is an easier way. (Photo credit to [http://firepanjewellery.com/].)

The surface area generated by rotating the graph of $f(x)$ between $a$ and $b$ about the $x$-axis formed is given by the integral

\[ ~ \int_a^b 2\pi f(x) \cdot \sqrt{1 + f'(x)^2} dx. ~ \]

If the curve is parameterized by $(g(t), f(t))$ between $a$ and $b$ then the surface area is

\[ ~ \int_a^b 2\pi f(t) \cdot \sqrt{g'(t)^2 + f'(t)^2} dx. ~ \]

These formulas do not add in the surface area of either of the ends.

Vase-like figure formed by the rotation of the graph of $x = 2 + \cos(y)$ about the $y$ axis.

Photo credit: wikipedia.

To see why this formula, we look at the parameterized case, the first one being a special instance with $g(t) =t$.

Let a partition of $[a,b]$ be given by $a = t_0 < t_1 < t_2 < \cdots < t_n =b$. This breaks the curve into a collection of line segments. Consider the line segment connecting $(g(t_{i-1}), f(t_{i-1}))$ to $(g(t_i), f(t_i))$. Rotating this around the $x$ axis will generate something approximating a disc, but in reality will be the frustum of a cone. What will be the surface area?

Consider a right-circular cone parameterized by an angle $\theta$ and the largest radius $r$ (so that the height satisfies $r/h=\tan(\theta)$). If this cone were made of paper, cut up a side, and layed out flat, it would form a sector of a circle, whose area would be $R\gamma$ where $R$ is the radius of the circle (also the side length of our cone), and $\gamma$ an angle that we can figure out from $r$ and $\theta$. To do this, we note that the arc length of the circle's edge is $R\gamma$ and also the circumference of the bottom of the cone so $R\gamma = 2\pi r$. With all this, we can solve to get $A = \pi r^2/\sin(\theta)$. But we have a frustum of a cone with radii $r_0$ and $r_1$, so the surface area is a difference: $A = \pi (r_1^2 - r_0^2) /\sin(\theta)$.

Relating this to our values in terms of $f$ and $g$, we have $r_1=f(t_i)$, $r_0 = f(t_{i-1})$, and $\sin(\theta) = \Delta f / \sqrt{(\Delta g)^2 + (\Delta f)^2}$, where $\Delta f = f(t_i) - f(t_{i-1})$ and similarly for $\Delta g$.

Putting this altogether we get that the surface area generarated by rotating the line segment around the $x$ axis is

\[ ~ \text{sa}_i = \pi (f(t_i)^2 - f(t_{i-1})^2) \cdot \sqrt{(\Delta g)^2 + (\Delta f)^2} / \Delta f = \pi (f(t_i) + f(t_{i-1})) \cdot \sqrt{(\Delta g)^2 + (\Delta f)^2}. ~ \]

(This is $2 \pi$ times the average radius times the slant height.)

As was done in the derivation of the formula for arc length, these pieces are multiplied both top and bottom by $\Delta t = t_{i} - t_{i-1}$. Carrying the bottom inside the square root and noting that by the mean value theorem $\Delta g/\Delta t = g(\xi)$ and $\Delta f/\Delta t = f(\psi)$ for some $\xi$ and $\psi$ in $[t_{i-1}, t_i]$, this becomes:

\[ ~ \text{sa}_i = \pi (f(t_i) + f(t_{i-1})) \cdot \sqrt{(g'(\xi))^2 + (f'(\psi))^2} \cdot (t_i - t_{i-1}). ~ \]

Adding these up, $\text{sa}_1 + \text{sa}_2 + \cdots + \text{sa}_n$, we get a Riemann sum approximation to the integral

\[ ~ \text{SA} = \int_a^b 2\pi f(t) \sqrt{g'(t)^2 + f'(t)^2} dt. ~ \]

If we assume integrability of the integrand, then as our partition size goes to zero, this approximate surface area converges to the value given by the limit. (As with arc length, this needs a technical adjustment to the Riemann integral theorem as here we are evaluating the integrand function at four points ($t_i$, $t_{i-1}$, $\xi$ and $\psi$) and not just at some $c_i$.

Surface of revolution of $f(x) = 2 - x^2$ about the $y$ axis. The lines segments are the images of rotating the secant line connecting $(1/2, f(1/2))$ and $(3/4, f(3/4))$. These trace out the frustum of a cone which approximates the corresponding surface area of the surface of revolution. In the limit, this approximation becomes exact and a formula for the surface area of surfaces of revolution can be used to compute the value.

Examples

Lets see that the surface area of an open cone follows from this formula, even though we just saw how to get this value.

A cone be be envisioned as rotating the function $f(x) = x\tan(\theta)$ between $0$ and $h$ around the $x$ axis. This integral yields the surface area:

\[ ~ \int_0^h 2\pi f(x) \sqrt{1 + f'(x)^2}dx = \int_0^h 2\pi x \tan(\theta) \sqrt{1 + \tan(\theta)^2}dx = (2\pi\tan(\theta)\sqrt{1 + \tan(\theta)^2} x^2/2 \big|_0^h = \pi \tan(\theta) \sec(\theta) h^2 = \pi r^2 / \sin(\theta). ~ \]

(There are many ways to express this, we used $r$ and $\theta$ to match the work above. If the cone is parameterized by a height $h$ and radius $r$, then the surface area of the sides is $\pi r\sqrt{h^2 + r^2}$. If the base is included, there is an additional $\pi r^2$ term.)

Example

Let the graph of $f(x) = x^2$ from $x=0$ to $x=1$ be rotated around the $x$ axis. What is the resulting surface area generated?

\[ ~ \text{SA} = \int_a^b 2\pi f(x) \sqrt{1 + f'(x)^2}dx = \int_0^1 2\pi x^2 \sqrt{1 + (2x)^2} dx. ~ \]

This integral is done by a trig substitution, but gets involved. We let SymPy do it:

using CalculusWithJulia  # loads `SymPy`, `QuadGK`, `ForwardDiff`
using Plots
@vars x
F = integrate(2 * PI * x^2 * sqrt(1 + (2x)^2), x)
\begin{equation*}2 \pi \left(\frac{x^{5}}{\sqrt{4 x^{2} + 1}} + \frac{3 x^{3}}{8 \sqrt{4 x^{2} + 1}} + \frac{x}{32 \sqrt{4 x^{2} + 1}} - \frac{\operatorname{asinh}{\left(2 x \right)}}{64}\right)\end{equation*}

We show F, only to demonstrate that indeed the integral is a bit involved. The actual surface area follows from a definite integral, which we get through the fundamental theorem of calculus:

F(1) - F(0)
\begin{equation*}2 \pi \left(- \frac{\operatorname{asinh}{\left(2 \right)}}{64} + \frac{9 \sqrt{5}}{32}\right)\end{equation*}
Example

Rotate the graph of $x^x$ from $0$ to $2$ around the $x$ axis. What is the surface area generated?

We work numerically for this one, as no antiderivative is forthcoming. Recall, the accompanying CalculusWithJulia package defines f' to return the automatic derivative through the ForwardDiff package.

f(x) = x^x
a, b = 0, 2
val, _ = quadgk(x -> 2pi * f(x) * sqrt(1 + f'(x)^2), a, b)
val
55.592413699691534

(The function is not defined at $x=0$ mathematically, but is on the computer to be $1$, the limiting value. Even were this not the case, the quadgk function doesn't evaluate the function at the points a and b that are specified.)

We compare this answer to that of the frustum of a cone with radii $1$ and $4$, formed by rotating the line segment connecting $(0,f(0))$ with $(2,f(2))$. The values should be comparable. The surface area of the cone part is $\pi (r_1^2 + r_0^2) / \sin(\theta) = \pi (r_1 + r_0) \cdot \sqrt{(\Delta h)^2 + (r_1-r_0)^2}$.

f(x) = x^x
r0, r1 = f(0), f(2)
pi * (r1 + r0) * sqrt(2^2 + (r1-r0)^2)
56.63586699569488
Example

What is the surface area generated by Gabriel's Horn, the solid formed by rotating $1/x$ for $x \geq 1$ around the $x$ axis?

\[ ~ \text{SA} = \int_a^b 2\pi f(x) \sqrt{1 + f'(x)^2}dx = \lim_{M \rightarrow \infty} \int_1^M 2\pi \frac{1}{x} \sqrt{1 + (-1/x^2)^2} dx. ~ \]

We do this with SymPy:

@vars M
ex = integrate(2PI * (1/x) * sqrt(1 + (-1/x)^2), (x, 1, M))
\begin{equation*}2 \pi \left(- \frac{M}{\sqrt{M^{2} + 1}} + \operatorname{asinh}{\left(M \right)} - \frac{1}{M \sqrt{M^{2} + 1}}\right) - 2 \pi \left(- \sqrt{2} + \log{\left(1 + \sqrt{2} \right)}\right)\end{equation*}

The limit as $M$ gets large is of interest. The only term that might get out of hand is asinh(M). We check its limit:

limit(asinh(M), M, oo)
\begin{equation*}\infty\end{equation*}

So indeed it does. There is nothing to balance this out, so the integral will be infinite, as this shows:

limit(ex, M, oo)
\begin{equation*}\infty\end{equation*}

This figure would have infinite surface, were it possible to actually construct an infinitely long solid. (But it has been shown to have finite volume.)

Example

The curve described parametrically by $g(t) = 2(1 + \cos(t))\cos(t)$ and $f(t) = 2(1 + \cos(t))\sin(t)$ from $0$ to $\pi$ is rotated about the $x$ axis. Find the resulting surface area.

The graph shows half a heart, the resulting area will resemble an apple.

g(t) = 2(1 + cos(t)) * cos(t)
f(t) = 2(1 + cos(t)) * sin(t)
plot(g, f, 0, 1pi)

The integrand simplifies to $8\sqrt{2}\pi \sin(t) (1 + \cos(t))^{3/2}$. This lends itself to $u$-substitution with $u=\cos(t)$.

\[ ~ \int_0^\pi 8\sqrt{2}\pi \sin(t) (1 + \cos(t))^{3/2} = 8\sqrt{2}\pi \int_1^{-1} (1 + u)^{3/2} (-1) du = 8\sqrt{2}\pi (2/5) (1+u)^{5/2} \big|_{-1}^1 = 8\sqrt{2}\pi (2/5) 2^{5/2} = \frac{2^7 \pi}{5}. ~ \]

Theorem of Pappus

The first theorem of Pappus provides a simpler means to compute the surface area if the distance the centroid is from the axis ($\rho$) and the arc length of the curve ($L$) are both known. In that case, the surface area satisfies:

\[ ~ \text{SA} = 2 \pi \rho L ~ \]

That is, the surface area is simply the circumference of the circle traced out by the centroid of the curve times the length of the curve - the distances rotated are collapsed to that of just the centroid.

Example

The surface area of of an open cone can be computed, as the arc length is $\sqrt{h^2 + r^2}$ and the centroid of the line is a distance $r/2$ from the axis. This gives SA$=2\pi (r/2) \sqrt{h^2 + r^2} = \pi r \sqrt{h^2 + r^2}$.

Example

We can get the surface area of a torus from this formula.

The torus is found by rotating the curve $(x-b)^2 + y^2 = a^2$ about the $y$ axis. The centroid is $b$, the arc length $2\pi a$, so the surface area is $2\pi (b) (2\pi a) = 4\pi^2 a b$.

Example

The surface area of sphere will be SA$=2\pi \rho (\pi r) = 2 \pi^2 r \cdot \rho$. What is $\rho$? The centroid of an arc formula can be derived in a manner similar to that of the centroid of a region. The formulas are:

\[ ~ \begin{align} \text{cm}_x &= \frac{1}{L} \int_a^b g(t) \sqrt{g'(t)^2 + f'(t)^2} dt\\ \text{cm}_y &= \frac{1}{L} \int_a^b f(t) \sqrt{g'(t)^2 + f'(t)^2} dt. \end{align} ~ \]

Here, $L$ is the arc length of the curve.

For the sphere parameterized by $g(t) = r \cos(t)$, $f(t) = r\sin(t)$, we get that these become

\[ ~ \text{cm}_x = \frac{1}{L}\int_0^\pi r\cos(t) \sqrt{r^2(\sin(t)^2 + \cos(t)^2)} dt = \frac{1}{L}r^2 \int_0^\pi \cos(t) = 0. ~ \]

\[ ~ \text{cm}_y = \frac{1}{L}\int_0^\pi r\sin(t) \sqrt{r^2(\sin(t)^2 + \cos(t)^2)} dt = \frac{1}{L}r^2 \int_0^\pi \sin(t) = \frac{1}{\pi r} r^2 \cdot 2 = \frac{2r}{\pi}. ~ \]

Combining this, we see that the surface area of a sphere is $2 \pi^2 r (2r/\pi) = 4\pi r^2$, by Pappus' Theorem.

Questions

Questions

The graph of $f(x) = \sin(x)$ from $0$ to $\pi$ is rotated around the $x$ axis. After a $u$-substitution, what integral would give the surface area generated?

Though the integral can be computed by hand, give a numeric value.

Questions

The graph of $f(x) = \sqrt{x}$ from $0$ to $4$ is rotated around the $x$ axis. Numerically find the surface area generated?

Questions

Find the surface area generated by revolving the graph of the function $f(x) = x^3/9$ from $x=0$ to $x=2$ around the $x$ axis. This can be done by hand or numerically.

Questions

(From Stewart.) If a loaf of bread is in the form of a sphere of radius $1$, the amount of crust for a slice depends on the width, but not where in the loaf it is sliced.

That is this integral with $f(x) = \sqrt{1 - x^2}$ and $u, u+h$ in $[-1,1]$ does not depend on $u$:

\[ ~ A = \int_u^{u+h} 2\pi f(x) \sqrt{1 + f'(x)^2} dx. ~ \]

If we let $f(x) = y$ then $f'(x) = x/y$. With this, what does the integral above come down to after cancellations:

Questions

Find the surface area of the dome of sphere generated by rotating the the curve generated by $g(t) = \cos(t)$ and $f(t) = \sin(t)$ for $t$ in $0$ to $ \pi/6$.

Numerically find the value.

Questions

The astroid is parameterized by $g(t) = a\cos(t)^3$ and $f(t) = a \sin(t)^3$. Let $a=1$ and rotate the curve from $t=0$ to $t=\pi$ around the $x$ axis. What is the surface area generated?

Questions

For the curve parameterized by $g(t) = a\cos(t)^5$ and $f(t) = a \sin(t)^5$. Let $a=1$ and rotate the curve from $t=0$ to $t=\pi$ around the $x$ axis. Numerically find the surface area generated?