Theory 1

Parametric curves are curves traced by the path of a ‘moving’ point. An independent parameter, such as t for ‘time’, controls both x and y values through Cartesian coordinate functions x(t) and y(t). The coordinates of the moving point are (x(t),y(t)).

Parametric curve

A parametric curve is a function from parameter space to the plane 2 given in terms of coordinate functions:

t(x(t),y(t))

Other notations

Be aware that sometimes the coordinate functions are written with f and g (or yet other letters) like this:

(x,y)=(f(t),g(t))

Or simply equating coordinate letters with functions: x=f(t),y=g(t)

Sometimes a different parameter is used, like s or u.

For example, suppose:

x=t22t,y=t+1

The curve traced out is a parabola that opens horizontally:

center


Given a parametric curve, we can create an equation satisfied by x and y variables by solving for t in either coordinate function (inverting either f or g) and plugging the result into the other function.

In the example:

y=t+1t=y1x=t22tx=(y1)22(y1)x=y24y+3x=(y2)21

This is the equation of a parabola centered at (1,2) that opens to the right.

Image of a parametric curve

The image of a parametric curve is the set of output points \big(\,x(t),\,y(t)\,) ParseError: Invalid delimiter 'undefined' after '\big' that are traversed by the moving point.

A parametric curve has hidden information that isn’t contained in the image:

  • The time values t when the moving point is found in various locations.
  • The speed at which the curve is traversed.
  • The direction in which the curve is traversed.

We can reparametrize a parametric curve to use a different parameter or different coordinate functions while leaving the image unchanged.

In the previous example, shift t by 1:

x=(t+1)22(t+1),y=(t+1)+1x=t21,y=t+2

Since the parameter t and the parameter t+1 both cover the same values for t(,), the same curve is traversed. But the moving point in the second, shifted version reaches any given location one unit earlier in time. (When t=1 in the second version, the input to x(t) and y(t) is the same as when t=0 in the first one.)