Surface Area
If a curve is not parametrized, the arc length of y=f(x) from x=a to x=b is given by Integral from a to b of Sqrt[1+[f'(x)]^2] dx. This follows from the parametric arc length formula: if y=f(x), parametrize by {t,f(t)}, then r'(t)={1,f'(t)} and ||r'(t)||=Sqrt[1+[f'(t)]^2].
To use an analogy, the surface area of a surface z=f(x,y) is given by
Double Integral over the region of Sqrt[1+(Dxf)^2+(Dyf)^2] dx dy, where Dx stands for partial with respect to x and Dy is partial with respect to y.
Again, let's look at a simple example to convince ourselves this is reasonable. This is a hemisphere. The surface area of a sphere is 4Pi r^2, so the answer we should get here is 2 Pi.
f[x_,y_]:=Sqrt[1-x^2-y^2]
Plot3D[f[x,y],{x,-1,1},{y,-1,1}]
Dx=D[f[x,y],x]
Dy=D[f[x,y],y]
Note carefully Mathematica's double integral command. The y integral is done first, so it can depend on x.
Integrate[Sqrt[1+Dx^2+Dy^2],
{x,-1,1},{y,-Sqrt[1-x^2],Sqrt[1-x^2]}]
Up to Some Multivariable Calculus Ideas Part II