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

Subsections


Parametric Curves 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]

Derivatives and the slope

The graph of a parametric curve may not have a slope at every point on the curve. When the slope exists, it must be given by the formula from class.

\begin{displaymath}\frac{dy}{dx} = \frac{\frac{dy}{dt}}{\frac{dx}{dt}} \end{displaymath}

It is clear that this formula doesn't make sense if $\displaystyle
\frac{dx}{dt}= 0$ at some particular value of $t$. If $\displaystyle
\frac{dy}{dt} \neq 0$ at that same value of $t$, then it turns out the graph has a vertical tangent at that point. If both $\displaystyle
\frac{dx}{dt}$ and $\displaystyle \frac{dy}{dt}$ are zero at some value of $t$, then the curve often doesn't have a tangent line at that point. What you see instead is a sharp corner, called a cusp. An example of this appears in the second exercise.

Arc length

As mentioned above, parametric curves often represent the motion of a particle or mechanical system. As we will see in class, when we think of a parametric curve as representing motion, we need a way to measure the distance traveled by the particle. This distance is given by the arc length, $s$, of a curve. For a parametric curve $x=f(t)$, $y=g(t)$, the arc length of the curve for $a \leq t \leq b$ is given below.

\begin{displaymath}s = \int_{a}^{b} \sqrt{ (f'(t))^2+(g'(t))^2}   dt \end{displaymath}

While the concept of arc length is very useful for the theory of parametric curves, it turns out to be very difficult to compute in all but the simplest cases.

Exercises

  1. Animate the following parametrization for $0 \leq t \leq 2\pi$. Then animate the parametrization again after doubling the angle and negating the $y$ component for each trig function. Describe what effect these changes have on the animation.

    \begin{displaymath}\mathbf{r}(t)=(12\cos(t)+5\cos(4t)){\bf i}+(12\sin(t)-5\sin(4t)){\bf j}\end{displaymath}

  2. Plot the curve

    \begin{displaymath}\mathbf{r}(t) = (5\cos(t)+\cos(5t)) \mathbf{i} + (5\sin(t)-sin(5t)) \mathbf{j}\end{displaymath}

    for $0 \leq t \leq 2\pi$.
    1. Find the formula for the slope of the parametric curve.
    2. Find $t$ values for two points on the graph where the slope does not exist or where there is a cusp.
    3. Calculate the $(x,y)$ coordinate location for the two points above and plot them on the graph along with the parametrization. You will find some of the commands below helpful, but you will need more commands than what is given.
      >xp:=diff(r(t)[1],t);
      >solve({xp=0,yp=0},t);
      >r(0);
      >with(plots):
      >a:=VPlot(r(t),t=0..2*Pi):
      >b:=VPlot(r(0),t=0..2*Pi,style=point,symbolsize=30,color=black):
      >display(a,b,c);
      

  3. Find two different parametrizations, without just switching trig functions for $x(t)$ and $y(t)$, and necessary interval for the ellipse

    \begin{displaymath}\frac{x^2}{16}+ \frac{y^2}{36} = 1 \end{displaymath}

    First show that the two parametrizations are the same shape by plotting them parametrically using ParamPlot (you may want to use scaling=constrained). Find the arclength of the ellipse for both parametrizations.


next up previous
Next: About this document ... Up: lab_template Previous: lab_template
Dina J. Solitro-Rassias
2016-01-26