next up previous
Next: About this document ... Up: lab_template2 Previous: lab_template2

Subsections


MA 1024 lab 1 - Parametric Curves and Vector-valued functions in the Plane

Purpose

The purpose of this lab is to introduce you to curve computations using Maple for parametric curves and vector-valued functions in the plane.

Background

By parametric curve in the plane, we mean a pair of equations $x=f(t)$ and $y=g(t)$ for $t$ in some interval $I$. A vector-valued function in the plane is a function $\mathbf{r}(t)$ that associates a vector in the plane with each value of $t$ in its domain. Such a vector valued function can always be written in component form as follows,

\begin{displaymath}\mathbf{r}(t) = f(t) \mathbf{i} + g(t) \mathbf{j} \end{displaymath}

where $f$ and $g$ are functions defined on some interval $I$. From our definition of a parametric curve, it should be clear that you can always associate a parametric curve with a vector-valued function by just considering the curve traced out by the head of the vector.

Plotting and animating curves in the plane

The ParamPlot command is in the CalcP package so you have to load it first. If you get an error from this command, ask for help right away.
>with(CalcP7);
The ParamPlot command produces an animated plot. To see the animation, execute the command and then click on the plot region below to make the controls appear in the Context Bar just above the worksheet window.
>ParamPlot([t,t^2],t=-2..2);
the direction of the motion on the curve can be reversed by simply changing the first component from t to -t, as shown below.
>ParamPlot([-t,t^2],t=-2..2);
The ParamPlot command is nice for visualization, but its output doesn't always show up in printouts. Toproduce a printable plot, you can use the VPlot command as shown below.
>VPlot([t^2,t^3-t],t=-1.5..1.5);

Defining parametric curves and vector valued functions simply in Maple

The easiest way to define a vector function or a parametric curve is to use the Maple list notaion with square brackets[]. Strictly speaking, this does not define something that Maple recognizes as a vector, but it will work with all of the commands you need for this lab.
>f:=t->[2*cos(t),2*sin(t)];
You can evaluate this function at any value of t in the usual way.
>f(0);
This is how to access a single component. You would use f(t)[2] to get the second component.
>f(t)[1]

Exercises

  1. Consider the simple function $y = x^{3} - x$. Animate the following two parameterizations for $5 \leq t \leq 5$ and state how the two parameterizations of the same function are different.

    \begin{displaymath}\mathbf{r}_1(t) = t \mathbf{i} + (t^{3} - t) \mathbf{j}\end{displaymath}


    \begin{displaymath}\mathbf{r}_2(t) = -t \mathbf{i}-(t^{3} -t) \mathbf{j}\end{displaymath}

  2. Consider the curve $\mathbf{r}(t) =
(2\cos(t) + 4\cos^2(t))\mathbf{i} + (2\sin(t) + 4\sin(t)\cos(t))\mathbf{j}$ for $0 \leq t \leq 2 \pi$. Plot the graph of $\mathbf{r}(t)$ and calculate the points at $t = \frac{\pi}{3}$ and $t = \pi$. Then plot the points on the graph.

  3. Suppose that at time zero, flight 12 is at the point (100 mi, -101.63347 mi) at an altitude of 30,000 feet and traveling northwest at 429 mph and that flight 33 is at the same altitude, but is traveling due east at a speed of 388 mph. At time zero, flight 33 is at the point (-200 mi, 30 mi).
    1. Write a parametric function for each flight.
    2. Animate the flights on one plot.
    3. Do the planes crash? When(convert your answer to minutes)?


next up previous
Next: About this document ... Up: lab_template2 Previous: lab_template2
Jane E Bouchard
2006-09-21