2.7: Parametric Surfaces
( \newcommand{\kernel}{\mathrm{null}\,}\)
We have now seen many kinds of functions. When we talked about parametric curves, we defined them as functions from R to R2 (plane curves) or R to R3 (space curves). Because each of these has its domain R, they are one dimensional (you can only go forward or backward). In this section, we investigate how to parameterize two dimensional surfaces. Below is the definition.
A parametric surface is a function with domain R2 and range R3.
We typically use the variables u and v for the domain and x, y, and z for the range. We often use vector notation to exhibit parametric surfaces.
A sphere of radius 7 can be parameterized by
r(u,v)=7cosusinvˆi+7sinusinvˆj+7cosvˆk
Notice that we have just used spherical coordinates with the radius held at 7.
We can use a computer to graph a parametric surface. Below is the graph of the surface
r(u,v)=sinuˆi+cosvˆj+exp(2u13+2v13)ˆk.
Represent the surface
z=excos(x−y)
parametrically.
Solution
The idea is similar to parametric curves. We just let x=u and y=v, to get
r(u,v)=uˆi+vˆj+eucos(u−v)ˆk.
A surface is created by revolving the curve
y=cosx
about the x-axis. Find parametric equations for this surface.
Solution
For a fixed value of x, we get a circle of radius cosx. Now use polar coordinates (in the yz-plane) to get
r(u,v)=uˆi+rcosvˆj+rsinvˆk.
Since u=x and r=cosx, we can substitute cosu for r in the above equation to get
r(u,v)=uˆi+cosucosvˆj+cosusinvˆk.
Normal Vectors and Tangent Planes
We have already learned how to find a normal vector of a surface that is presented as a function of tow variables, namely find the gradient vector. To find the normal vector to a surface r(t) that is defined parametrically, we proceed as follows.
The partial derivatives
ru(u0,v0)andrv(u0,v0)
will lie on the tangent plane to the surface at the point (u0,v0). This is true, because fixing one variable constant and letting the other vary, produced a curve on the surface through (u0,v0). ru(u0,v0) will be tangent to this curve. The tangent plane contains all vectors tangent to curves passing through the point.
To find a normal vector, we just cross the two tangent vectors.
Find the equation of the tangent plane to the surface
r(u,v)=(u2−v2)ˆi+(u+v)ˆj+(uv)ˆk
at the point (1,2).
Solution
We have
ru(u,v)=(2u)ˆi+ˆj+vˆk
rv(u,v)=(−2v)ˆi+ˆj+uˆk
so that
ru(1,2)=2ˆi+ˆj+2ˆk
rv(1,2)=−4ˆi+ˆj+ˆk
r(1,2)=−3ˆi+3ˆj+3ˆk.
Now cross these vectors together to get
ru×rv=|ˆiˆjˆk212−411|=−ˆi−10ˆj+6ˆk.
We now have the normal vector and a point (−3,3,2). We use the normal vector-point equation for a plane
−1(x+3)−10(y−3)+6(z−2)=0
−x−10y+6z=−15orx+10y−6z=15.
Surface Area
To find the surface area of a parametrically defined surface, we proceed in a similar way as in the case as a surface defined by a function. Instead of projecting down to the region in the xy-plane, we project back to a region in the uv-plane. We cut the region into small rectangles which map approximately to small parallelograms with adjacent defining vectors ru and rv. The area of these parallelograms will equal the magnitude of the cross product of ru and rv. Finally add the areas up and take the limit as the rectangles get small. This will produce a double integral.
Let S be a smooth surface defined parametrically by
r(u,v)=x(u,v)ˆi+y(u,v)ˆj+z(u,v)ˆk
where u and v are contained in a region R. Then the surface area of S is given by
SA=∬R||ru×rv||dudv.
Since the magnitude of a cross product involves a square root, the integral in the surface area formula is usually impossible or nearly impossible to evaluate without power series or by approximation techniques.
Find the surface area of the surface given by
r(u,v)=(v2)ˆi+(u−v)ˆj+(u2)ˆk0≤u≤21≤v≤4.
Solution
We calculate
ru(u,v)=ˆj+2uˆk
rv(u,v)=(2v)ˆi+ˆj.
The cross product is
||r×r||=|ˆiˆjˆk012u2v−10|=||2uˆi+4uvˆj−2vˆk||=2√u2+4u2v2+v2.
The surface area formula gives
SA=∫20∫412√4u2v2+v2dvdu.
This integral is probably impossible to compute exactly. Instead, a calculator can be used to obtain a surface area of 70.9.
Larry Green (Lake Tahoe Community College)
Integrated by Justin Marshall.