Next: About this document ...
Up: lab_template_back
Previous: lab_template_back
Subsections
The purpose of this lab is to give you practice with parametric
curves in the plane and in visualizing parametric curves as
representing motion.
To assist you, there is a worksheet associated with this lab that you can copy into your home directory by going to your computer's start menu and choose run. In the run field type:
\\filer\calclab
when you hit enter, you can then choose MA1023 and then choose the worksheet
Parametric_start_B11.mw
Remember to immediately save it in your own home directory. Once you've copied and saved the worksheet, read through the background on the internet and the background of the worksheet before starting the exercises.
A parametric curve in the plane is defined as an ordered
pair,
, of functions, with
representing the
coordinate and
the
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.
sexer
For example, neglecting air resistance, the position of a projectile
fired from the origin at an initial speed of
and angle of inclination
is given by the parametric
equations
where
is time and
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.
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.
It is clear that this formula doesn't make sense if
at some particular value of
. If
at that same value of
, then it turns out the
graph has a vertical tangent at that point. If both
and
are zero at some
value of
, 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.
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,
, of a curve. For a parametric curve
,
, the arc length of the curve for
is given
below.
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.
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
can be written parametrically in different ways two of them are
and
>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);
- Animate the following two parametrization for
. Then animate the two parametrizations again after doubling the angle for each trig function. Describe what effect doubling the angle has on the animation.
-
-
- Given the family of parametric curves defined by
and
, use a parametric plot to see how the graph changes for the following values of
:
.
- For what values of
does the graph have a cusp? What is different about
?
- Give a formula for the location of the asymptote.
- Use the formula for the slope of a parametric curve to find
.
- Evaluate the numerator and denominator of
separately for each of the following and explain the difference between the two in terms of slope of the graph.
,
.
,
.
- The parametric description
,
,
is the ellipse
First show that the two are the same shape by plotting them parametrically and with the command implicitplot. Find the arclength of the ellipse.
Next: About this document ...
Up: lab_template_back
Previous: lab_template_back
Dina J. Solitro-Rassias
2011-11-12