Parametric Curves

A vector function $f: \real
   \to \real^n$ can be thought of as a curve in $\real^n$ . If you think of the real line as a wire, f takes the wire and bends and distorts it, then places it in $\real^n$ .

$$\hbox{\epsfysize=1.25in \epsffile{parametric-curves-1.eps}}$$

I'll be a little sloppy and refer to both the function f and the set of output points in $\real^n$ (what mathematicians call the image of f, denoted $\im f$ ) as "the curve".

To make things easier to describe, suppose $f: \real \to \real^3$ , so f is a curve in space. Write f in component form:

$$f(t) = (f_1(t), f_2(t), f_3(t)).$$

You can describe f in terms of its component functions, which give the x, y, and z coordinates of a point on the curve:

$$x = f_1(t), \quad y = f_2(t), \quad z = f_3(t).$$

These are the parametric equations for the curve. I'll look at examples of how you can obtain parametric equations for various curves.


Example. Find parametric equations for the segment from $P(3, 9, -5)$ to $Q(1, 17, -3)$ .

The segment from a point P to a point Q is given by

$$(x, y, z) = (1 - t) \cdot P + t \cdot Q.$$

I'm giving the formula for points in $\real^3$ , but the same formula works for points in $\real^n$ for any n.

You get the segment from P to Q if you use the range $0 \le t \le 1$ . If you use the range $\infty < t < \infty$ , you get the line through P and Q. This gives another way to obtain the parametric equations for a line.

In this example, I have

$$\eqalign{ (x, y, z) & = (1 - t) \cdot (3, 9, -5) + t \cdot Q(1, 17, -3) \cr & = (3(1 - t), 9(1 - t), -5(1 - t)) + (t, 17 t, -3 t) \cr & = (3 - 2 t, 9 + 8 t, -5 + 2 t) \cr}$$

The parametric equations are

$$x = 3 - 2 t, \quad y = 9 + 8 t, \quad z = -5 + 2 t.\quad\halmos$$


In many cases, we'll need equations of circles or ellipses. You can obtain parametrizations for these curves using the identity

$$(\cos t)^2 + (\sin t)^2 = 1.$$


Example. Find parametric equations for the circle

$$(x + 7)^2 + (y - 4)^2 = 36.$$

Divide both sides by 36 and write the terms on the left as squares:

$$\eqalign{ \dfrac{(x + 7)^2}{36} + \dfrac{(y - 4)^2}{36} & = 1 \cr \noalign{\vskip2pt} \left(\dfrac{x + 7}{6}\right)^2 + \left(\dfrac{y - 4}{6}\right)^2 & = 1 \cr}$$

Match this against the identity

$$(\cos t)^2 + (\sin t)^2 = 1.$$

I have

$$\dfrac{x + 7}{6} = \cos t \quad\hbox{and}\quad \dfrac{y - 4}{6} = \sin t.$$

Solving these equations for x and y give the parametric equations:

$$x = -7 + 6 \cos t, \quad y = 4 + 6 \sin t.\quad\halmos$$


Example. Find parametric equations for the ellipse

$$4 (x - 1)^2 + 16 (y - 5)^2 = 49.$$

Divide both sides by 49 and write the terms on the left as squares:

$$\eqalign{ \dfrac{4 (x - 1)^2}{49} + \dfrac{16 (y - 5)^2}{49} & = 1 \cr \noalign{\vskip2pt} \left(\dfrac{2(x - 1)}{7}\right)^2 + \left(\dfrac{4(y - 5)}{7}\right)^2 & = 1 \cr}$$

Match this against the identity

$$(\cos t)^2 + (\sin t)^2 = 1.$$

I have

$$\dfrac{2(x - 1)}{7} = \cos t \quad\hbox{and}\quad \dfrac{4(y - 5)}{7} = \sin t.$$

Solving these equations for x and y give the parametric equations:

$$x = 1 + \dfrac{7}{2} \cos t, \quad y = 5 + \dfrac{7}{4} \sin t.\quad\halmos$$


Often a curve appears as the intersection of two surfaces. Suppose one of the surfaces is simply the "cylinder" generated by a curve in one of the coordinate planes (that is, you get the surface by moving the curve perpendicular to the plane).

$$\hbox{\epsfysize=2in \epsffile{parametric-curves-2.eps}}$$

You can often obtain a parametrization in the following way:

1. Parametrize the curve which generates the cylindrical surface: This gives you equations for the coordinate variables for the plane containing the curve.

2. Plug the curve parametrization into the equation for the second surface and solve for the remaining variable.

Example. Parametrize the curve of intersection of the elliptical cylinder $4
   x^2 + y^2 = 9$ with the plane $3 x - 8 y + z = 9$ .

Thinking of $4 x^2 + y^2 =
   9$ as an ellipse in the x-y plane, I may parametrize the curve by

$$x = \dfrac{3}{2} \cos t, \quad y = 3 \sin t.$$

For the plane, $z = -3 x + 8
   y + 9$ , so plugging in the expressions above for x and y gives

$$z = -\dfrac{9}{2} \cos t + 24 \sin t + 9.$$

The curve is

$$x = \dfrac{3}{2} \cos t, \quad y = 3 \sin t, \quad z = -\dfrac{9}{2} \cos t + 24 \sin t + 9.\quad\halmos$$


Sometimes you can simply solve the equations for the intersecting surfaces simultaneously, giving a curve whose equation you can parametrize.

Example. Parametrize the curve of intersection of the plane $x = 1$ with the surface $z = x^2 - 2 x^2 y + y^2$ .

The intersection of the surfaces is obtained by setting $x = 1$ in $z = x^2 -
   2 x^2 y + y^2$ :

$$z = 1^2 - 2 \cdot 1^2 \cdot y + y^2 = 1 - 2 y + y^2.$$

Set $y = t$ , so $z = 1 - 2 t + t^2$ .

The parametrization is

$$x = 1, \quad y = t, \quad z = 1 - 2 t + t^2.\quad\halmos$$


In some cases, parametrizations arise independently of surfaces.

Example. Sketch the graph of

$$x = \cos t, \quad y = \sin t, z = t.$$

The graph is a helix:

$$\hbox{\epsfysize=1.75in \epsffile{parametric-curves-3.eps}}$$

We've seen that the $x = \cos
   t$ , $y = \sin t$ pair gives a circular movement or a rotation. As t increases, z (the height above the x-y-plane) increases. So the curve goes around the z-axis, rising as it goes.


Contact information

Bruce Ikenaga's Home Page

Copyright 2018 by Bruce Ikenaga