| MATH1020 Calculus II | Maple Lab 8 | |
| Section 1-4 | Due: Tuesday, November 16, 1999. | |
| http://www.math.rpi.edu/~mitchj/math1020 | ||
This lab consists of two independent questions. In the first question, we consider the graphs of some quadric surfaces and in the second we examine the another family of curves. Be sure to follow the lab guidelines as described on the class handouts.
> x:=cos(t)/sqrt(5); y:=sin(t)*cos(s)/sqrt(3); z:=sin(t)*sin(s);
> plot3d([x,y,z],t=0..Pi,s=0..2*Pi);
Note that every choice of s and t gives a point on the surface,
and every point on the surface corresponds to some choice of s and t.
We use the fact that
Classify and use Maple to plot the quadric surfaces described by the equations
In each case, you will need to figure out an appropriate parameterization of the surface. The text will be helpful to classify the surfaces.
To plot this surface with m=1 and n=2 in Maple, use the commands:
> rho := 1 + 0.2 * sin(m*theta) * sin(n*phi);
> m:=1; n:= 2; plot3d(rho,theta=0..2*Pi,phi=0..Pi,coords=spherical);