Previous: Plane Curves and Their Representation


1a. Families of Curves

In this optional section we present several important examples of curve families: the cardiods, the cycloids, the epicycloids, the catenaries, and the conic sections.5

The previous exercises concern families of curves that depend a choice of one or two positive integers. Computer graphics displays are well suited for presenting one-parameter families of curves.

The Cardioid Series

We define Xc(t) =[(c+cos(t))cos(t), (c+cos(t) )sin(t)] over the domain (-pi, pi). For which values of c will the curve Xc have a cusp? Which curves will have double points (points where X(t) = X(t + d) for some non-zero d such that t + d is still in the domain)? For which c will the curve have inflection points?

Java not enabled.

The Cycloid Series

Consider the path of a point on the circumference of a wheel of radius a rolling without slipping along the x-axis so that the center has coordinates (t, a) and when t=0, the point is at the origin. The parametric equation for the curve is X(t)=a(t-sin(t), 1-cos(t)). Draw a diagram that indicates why this is a reasonable representation of the curve. Where does the curve have cusps? How far does the point go on the x-axis?

Java not enabled.

In the following demo, you can also vary c, the length of the stick, so the point is not necessarily drawn at the circumference of the wheel.

Java not enabled.

The Epicycloid Series

As shown in the first demo, these are curves traced out by the path of a point on the circumference of a wheel of radius b rolling without slipping on a circle of radius a, so that the path of the center has coordinates ((a+b)cos(t),(a+b)sin(t)) and the point is at ((a+b), 0) when t = 0. The parametric equation for the curve is X(t) =()(a+b)cos( t)-bcos(atb ), (a+b) sin(t)-bsin( atb). Where does the curve have cusps? Think about its length.

Java not enabled.

The Catenary Series The family of curves given by X(t) = (t, eat+e -at2a), -1≤t≤1, represents the equation of a hanging chain through the points ()1, cosh(at)a and ()-1, cosh(at)a. Show that it is possible for two different chains to hang from the same points, at least for certain values of a.

Java not enabled.

Conic Sections

In addition to circles and parabolas, there are two other families of conic sections of great interest in differential geometry of curves, the ellipses and the hyperbolas. The family of ellipses with axes parallel to the coordinate axes is given by X(t)=[acos(t), b sin(t)], while the corresponding family of hyperbolas is given by X(t)=[acosh(t), bsinh(t)].

Java not enabled.

Java not enabled.


Next: Velocity Vectors and Speed