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 [a, b] 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 D into a bunch of small rectangles, as illustrated below with our example helicoid surface.
The small rectangles form a grid on D. 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 D onto
the surface. You can see below how each rectangle in D (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
| A = |
Note the similarity to the expression we derived for the length of a parametrized path,
| L = |
You can read an example here.