|
|
|
|
|
x = t* cos(2t); y = t* sin(t) over the interval (0, 4Pi) |
x = 20t cos(.2t); y = 10 sin(t) over the interval (0, 80Pi) |
Sometimes, especially in science, it is convenient to describe a curve in terms of a parameter. "t" is often the parameter as it often represents time. The ability to describe curves parametrically allows for vastly different types of curves with simple parametric equations. The equations are simpler, but there is now a seperate equation for each variable. Because the equations are simpler, an equation that would be very complex using the normal Cartesian equation, can be amazingly simple using parametric equations.
This separate equation for x and y can also be easier
to use for computer
aided manufacturing devices, like robotic arms. (See below under the
definition
for Bezier curves.)
Below you see a table of values constructed for the
parametric equations shown in the heading of the table. The parameter
in this case is the angle,
. Using a spreadsheet, this process can be automated and
plotted using
the scatterplot function.. The top graph below illustrates this. A
parametric plot in Maple is also shown, with the accompanying syntax.
Please note the
minor difference between multiple plots in Maple, and parametric plots
in
Maple. The only difference is the position of the square brackets. In
multiple
plots, the square brackets enclose only the functions to be plotted. In
parametric
plots, the square brackets are around the entire expression. In both
cases,
the rounded parentheses are on the outside.
|
> plot([2*cos(t),sin(t),t=0..100]);
|
|
Using your Tools for Enriching Calculus CD (that came with your book), load and run Module 1.7A: Parametric Curves. This module will let you explore with parametric equations and get a better feel for how the two seperate functions combine. |
| Parameter | A third variable which x and y are described in terms of. (t is a frequently used parameter representing time). |
| Parametric Equations | Two equations, each representing the x and y coordinates of a Cartesian graph expressed in terms of a third variable , or parameter. |
| Parametric Curve | A Cartesian graph or curve represented by two parametric equations. |
| Initial Point | The initial point of a parametric curve is the point which represents the x and y values when the parameter takes on the lowest value in its domain . |
| Terminal Point | The terminal point of a parametric curve is the point which represents the x and y values when the parameter takes on the greatest value in its domain . |
| Bezier Curves | Special parametric curves that are often used in
manufacturing, and in describing the shape of characters sent to laser
printers. Bezier curves "smoothly" connect a set of points.
|
| Cycloid | A curve traced out by a point on the circumference of a
circle as the circle rolls along a straight line.
|
|
Using your Tools for Enriching Calculus CD (that came with your book), load and run Module 1.7B: Families of Cycloids. This module shows how the cycloid is formed as the circle moves. |
|
|
|