Surface area of parametrized surfaces
We can calculate the surface area of a parametrized surface much in the same way that we calculated the path length of a parametrized path. You may recall how we chopped up the interval into small segments, and approximated the path as a bunch of straight line segments in order to estimate its length.
The procedure for calculating surface area is similar. In this case, we chop up the region into a bunch of small rectangles, as illustrated below with our example helicoid surface.
The small rectangles form a grid on . The rectangles are mapped by onto the helicoid, forming a grid on the surface. In fact, the grid on the surface was shown in all the above examples because that is how the computer typically draws surfaces.
Notice how the function maps each small rectangle in onto the surface. You can see below how each rectangle in (outlined in green) maps onto a small part of the surface, called the image of the rectangle (outlined in red).
In reality, the image of each rectangle is some “curvy rectangle” on the surface. (In the above demos, the image of each rectangle appears to have straight edges, but that is due to how the computer draws surfaces. What is shown by the computer is only an approximation of the actual helicoid.)
To estimate the surface area, we approximate each curvy rectangle as a parallelogram. You can read how the sides of parallelogram are proportional to and . We need to calculate the area of the parallelogram spanned by these two vectors. We take the magnitude of their cross product.
If we would form a Riemann sum defining this approximation of surface area and take the limit as the size of the rectangles go to zero, we would see that the total surface area is the double integral
Note the similarity to the expression we derived for the length of a parametrized path,
For surface area, instead of integrating over an interval , we integrate over the region . In the formula for path length, the expression estimates how much is stretching the interval as it maps onto the path (or, in other words, how fast a particle with position is moving). The ugly expression
is analogous to . The expression indicates how much is stretching as it maps onto the surface.
You can read an example here.