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 give you practice with parametric curves in the plane and in visualizing parametric curves as representing motion.

Background

A parametric curve in the plane is defined as an ordered pair, $(f(t), g(t))$, of functions, with $f(t)$ representing the $x$ coordinate and $g(t)$ the $y$ coordinate. Parametric curves arise naturally as the solutions of differential equations and often represent the motion of a particle or a mechanical system. They also often arise in studying oscillations in electrical circuits.

For example, neglecting air resistance, the position of a projectile fired from the origin at an initial speed of $v_0$ and angle of inclination $\pi/4$ is given by the parametric equations

\begin{eqnarray*}
x(t) & = & v_0 \cos(\pi/4) t \\
y(t) & = & -\frac{1}{2} g t^2 + v_0 \sin(\pi/4) t
\end{eqnarray*}



where $t$ is time and $g$ is the acceleration due to gravity.

To help you to visualize parametric curves as representing motion, a Maple routine called ParamPlot has been written. It uses the Maple animate command to actually show the particle moving along its trajectory. You actually used this command before for the lab on polar coordinates. Examples are in the Getting Started worksheet.

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}{dx} \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 first 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.

Maple Commands

There are a variety of ways to work with parametric equations in Maple. There is an animation command that shows how the graph is plotted over t. For example the parabola $y=x^2$ can be written parametrically in different ways two of them are $[t,t^2]$ and $[-t,t^2]$
>with(plots):
>with(CalcP7):
>implicitplot(x^2=y,x=-2..2,y=0..4,scaling=constrained);
>ParamPlot([t,t^2],t=-2..2,scaling=constrained);
>ParamPlot([-t,t^2],t=-2..2,scaling=constrained);
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. To enter a function parametrically
>f:=t->[t*cos(3*t),t^2];
>VPlot(f(t),t=-2*Pi..2*Pi);

Exercises

  1. The cycloid is a famous example of a parametric curve having several important applications. Use the ParamPlot command to animate the cycloid $x(t) = t-\sin(t)$, $y(t) = 1-\cos(t)$ over the interval $0 \leq t \leq 6 \pi$. The sharp points in the graph at $2\pi$, $4\pi$, and $6\pi$ are called cusps. Use the formula for the slope of a parametric curve to explain why it makes sense for the cusps to occur only at these values of $t$. That is, verify that the curve has a slope at all other values of $t$ in the interval.

  2. The family of parametric curves

    \begin{displaymath}( \cos(n t), \sin(m t)), \mbox{ for $0 \leq t \leq 2 \pi$}, \end{displaymath}

    where $n$ and $m$ are positive integers, is an example of what is called a Lissajous figure. Use ParamPlot to plot the three cases $n=1,m=2$, $n=1,m=3$ and $n=3, m=1$ and describe what you see.

  3. The parametric description $x=2\cos(t)$, $y= \sin(t)$, $0 \leq t \leq 2 \pi$ is the ellipse

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

    First show that the two are the same shape by plotting them with the commands implicitplot and VPlot. Use the formula above to set up an integral for the arc length of the ellipse. You should find that Maple can't do the integral exactly. This isn't because Maple is stupid, but because this integral really can't be done analytically. You can get a numerical approximation to the integral by putting an evalf command on the outside of the int command.


next up previous
Next: About this document ... Up: lab_template Previous: lab_template
Jane E Bouchard
2006-11-30