
5. Curves 99
EXERCISES
5.1. Express 3−5t+4t
2
−2t
3
+6t
4
in Horner’s form. Determine the differ-
ence in the number of ± and × required to evaluate the polynomial
in its original and new form.
5.2. Write a computer program which takes as input the coefficients of a
polynomial and a parameter value t, and which outputs the value of
the polynomial at the given parameter value using Horner’s method.
5.3. Determine the number of operations ± and × saved by evaluating a
polynomial of degree n using Horner’s method.
5.4. Write a computer program which renders a parametric curve. Alter-
natively, learn how to plot curves using a computer package. Plot
some of the curves given in the examples.
5.3 Parametric Curves
Let C(t)=(x(t),y(t)) be a curve defined on an open interval (a, b). Then C(t)
is said to be C
k
-continuous (or just C
k
) if the first k derivatives of x (t)andy (t)
exist and are continuous. If infinitely many derivatives exist then C(t)issaidto
be C
∞
.AcurveC(t)=(x(t),y(t)) defined on a closed interval [a, b]issaidto
be C
k
-continuous if there exists an open interval (c, d) containing the interval
[a, b], and a C
k
-continuous curve D(t)definedon(c, d), such that C(t)=D(t)
for all t ∈ [a, b]. Curves defined on a closed interval need to be “extendable”
to a curve on an open interval in order to differentiate x(t)andy(t)atthe
ends of the interval. (Another type of continuity called G
k
-continuity, which is
important for CAD applications, is introduced in Definition 7.14.)
Suppose C(t)isaC
1
curvedefinedonanintervalI, then the function
ν(t)=
(x
(t))
2
+(y
(t))
2
is called the speed of the curve C(t). If ν(t) =0,
for all t ∈ I,thenC(t)issaidtobearegular curve. If ν(t) = 1 for all t ∈ I,
then C(t)issaidtobeaunit speed curve.
Example 5.5
1. Let (x(t),y(t)) = (t, t
2
). Then (x
(t),y
(t)) = (1, 2t), and
ν(t)=
1
2
+(2t)
2
=
1+4t
2
.