| MATH1020 Calculus II | Maple Lab 9 | |
| Section 1-4 | Due: Tuesday, November 23, 1999. | |
| http://www.math.rpi.edu/~mitchj/math1020 | ||
This lab consists of one question, examining the behavior of a space curve. Be sure to follow the lab guidelines as described on the class handouts.
> x:=cos(5*t)*(2+cos(t)); y:=sin(5*t)*(2+sin(t)); z:=t;
> plot3d([x,y,z],t=0..10,s=0..1,grid=[500,2]);
In the plot3d command, s is a dummy parameter and the grid option tells Maple to plot using 500 subintervals in t and 2 in s. Choose an appropriate view (or views) for your plot so that you can get a good feel for the motion of the particle. Describe the motion qualitatively.
> with(linalg):
> r:=vector([x,y,z]);
> rp:=map(diff,r,t);
> speed:=sqrt(dotprod(rp,rp)) ;
Plot the speed versus t for
.
Discuss the behavior of this
curve. Does it agree with what you would expect?
> rpp:=map(diff,rp,t);
> u:=crossprod(rp,rpp);
> kappa:=sqrt(dotprod(u,u)/dotprod(rp,rp)**3);
Plot the curvature versus t for
and discuss its behavior.
Notice that there are rapid fluctuations on top of a gentle oscillation.
In view of the form of
above and its curve in part (a),
can you explain this behavior?