| MATH1020 Calculus II | Maple Lab 10 | |
| Section 1-4 | Due: Tuesday, December 7, 1999. | |
| http://www.math.rpi.edu/~mitchj/math1020 | ||
This lab consists of two independent questions. They are both concerned with functions of two variables and their graphs. Be sure to follow the lab guidelines as described on the class handouts.
> f:=(3*x**2-y**2)*exp(-x**2-y**2);
> plot3d(f,x=-3..3,y=-3..3);
> with(plots):
> contourplot(f,x=-3..3,y=-3..3);
> dfdx := diff(f,x); dfdy := diff(f,y);
> implicitplot(dfdx=0,x=-3..3,y=-3..3);(Notice that these plots are not very smooth, due to numerical difficulties.) To get a good idea of the plot, try plotting it using the axes=none option. How does the set of points with df/dx=0 correspond to the plot of f in part (a)?
> implicitplot(dfdy=0,x=-3..3,y=-3..3);
> dxplot:=implicitplot(dfdx=0,x=-3..3,y=-3..3,color=blue):What is special about the points where the two curves cross?
> dyplot:=implicitplot(dfdy=0,x=-3..3,y=-3..3,color=red):
> display({dxplot,dyplot});
> dTdx:=subs(x=1,y=1,diff(T,x));
> dTdy:=subs(x=1,y=1,diff(T,y));
> S:=plot3d(T,x=0..2,y=0..2):
> P:=plot3d(dTdx*(x-1)+dTdy*(y-1)+subs(x=1,y=1,T),x=0..2,y=0..2):
> display3d({S,P});
Describe the relationship between the surface and plane near x=y=1. You may need to experiment with several views to find the best ones to show the relationship.