Bezier Excel
Bezier Excel
Kristine Harwood
page 3
page 5
page 15
page 23
page 25
page 29
page 37
Classroom exercises
page 41
Graphing Calculator
Excel Spreadsheet
Challenge Problems
Bibliography
page 48
Pierre Bzier (1910-1999) was a French engineer who worked for many years at the Renault
automobile company. In the 1960s and 1970s he developed a method of producing computer-driven
curves to be used in the design of automobiles which came to be known as Bzier curves (Staples,
2005). Bzier curves are used because of their flexibility and high adaptability. While the points of the
curve can be attached to a Cartesian coordinate system, they also behave intuitively for the nonmathematician. They can be made to any length and variety of shape, by attaching the endpoint of one
curve to the beginning point of another. They can be expanded to make Bzier surfaces and B-splines,
both topics that will not be covered in this paper, but which are highly interesting to those who work in
computer design programs.
I was first intrigued with Bzier curves during a computer algorithms course. The subject was
mentioned only briefly, and the idea of a curve being influenced by points that were not on it was one
that tugged at my imagination. As I have investigated and become familiar with these curves, I have
found another truth they beg to be played with, much like a wireless puppet. It is near impossible to
make a Bzier curve and not move points about to change the shape. On a more intellectual level, these
curves have helped me see more clearly how parametric equations behave and can be developed into
increasingly complex representations.
Professional designers respect Bzier curves (Kirsanov, 1999). The author acknowledges the
usefulness and versatility of Bzier curves without delving into the mathematics. He demonstrates the
usefulness of these curves in expression and gives numerous artistic and design examples.
Mathematicians seem to like them for their connection between usefulness in industry, the
connectedness between equation and graph, and the relative ease with which they can be connected
together to form an impressive and flexible curve. S.G. Hoggar (2006) describes them as the basis for
more complicated B-splines. B-splines are formed in a manner similar to connecting a number of
Bzier curves together at their endpoints. Both are used to create and analyze curves in computer
imagery.
An internet search today finds the term Bzier curves in computer graphic design, digitizing
and animation programs and mentioned specifically as used in the programs Inkscape, Adobe
Illustrator, Adobe Photoshop, General Image Manipulation Program, Adobe Flash, Adobe After
Effects, Macromedia Freehand, and Microsoft Expression Blend. Bzier curves are the basis for many
computer generated fonts, most notably Adobe Type fonts. There is a wide variety of font styles, as is
apparent to the user of any word processing program. The advantage to a font using a basis of Bzier
curves is that the characters size is easily scalable. Since Bzier curves are vector drawings, the lines
they produce remain crisp and sharp when they are enlarged. By comparison, a raster image is formed
by pixels, and this type of image loses sharpness as it is enlarged, showing the box-like pixels on its
edges. (Groleau, 2002)
The Bzier curve provides a meaningful bridge between algebraic equation and graceful curve.
Through the use of parametric equations and dynamic graphing, an elegant and flexible curve can be
produced.
Throughout this paper, parametric equations and the mathematics of a Bzier curve will be
explored. Graphs and constructions will be displayed using a variety of technology programs. Several
exercises linking the two will be presented and an introduction for students and a sampling of student
activities will complete the paper.
A(ax,ay)
B (bx,by)
y = g(t) = (1 t) ay + tby
If the two endpoints of the segment are B and C, the parametric equations are:
x = f(t) = (1 t) bx + tcx
y = g(t) = (1 t) by + tcy
B (bx,by)
C (cx,cy)
P1
Q1
Since the two ratios are the same, they can be considered as having the same t-value. If this new point,
P1, on AB moves, the new point on BC , Q1, moves as well, always with the same ratio.
P1
Q1
P1
A
Q1
P1
Q1
Consider the segment between these two new points, P1Q1 . Consider a point, P2, determined using the
the same ratio (and the same t value) along this line segment.
P1
P2
Q1
Now there are three places where the t-value is at work; in AB on point P1, in BC on point Q1, and in
P1Q1 and point P2.
P1
P2
Q1
P1
P2
B
Q1
The curve traced by this inner third moving point (P2) is the Bzier curve.
The equation for this curve of points can be arrived at by using the beginning x value of
segment AB , i.e. (1 t) ax + tbx and the ending x-value of segment AC, ie. (1 t) bx + tcx, since that
is where the path starts and where it ends after tracing its curve from t = 0 to t = 1.
Apply the original parametric equation f(t) = (1 t) ax + tbx, we arrive at
fx(t) = (1 t) [ (1 t) ax + tbx] + (t) [ (1 t) bx + tcx]
Simplifying
This is a quadratic equation and is the equation for a Bzier curve with two endpoints and one
control point. This equation can also be arrived at by using the moving t parts;
(1 t) + t,
and squaring:
[(1 t) + t]2 = (1 t)2 + 2t(1-t) + t2
and including as coefficients the values of each of the three points:
fx(t) = (1 t)2 ax + 2t(1 t) bx + t2cx
gy(t) = (1 t)2 ay + 2t(1 t) by + t2cy
For a cubic equation, that is, for the equation of a Bzier curve with two endpoints and two
control points, we can cube this expression:
[(1 t) + t]3 = (1-t)3 + 3t(1-t)2 + 3t2(1-t) + t3
and inserting coefficients, arrive at the equations:
8
The equation can continue to be made more complex and raised to a higher degree. Add a third
control point and we reach a fourth degree polynomial with coefficients derived from the binomial
theorem:
fx(t) = (1-t)4 ax + 4t(1-t)3bx + 6t2(1-t)2cx + 4dxt3(1-t)1dx + t4ex
gy(t) = (1-t)4 ay + 4t(1-t)3by + 6t2(1-t)2cy + 4t3(1-t)1dy + t4ey
The chart below demonstrates the equations and curves produced by a number of Bzier
curves. In the far right column, the control points are those appearing outside the curve.
terminal
points;
control
points
parametric equations
x = f(t)
y = g(t)
0t1
degree
of
equation
# of
moving
t
parts
shape created
line segment
x = fx(t) = (1 t) ax + tbx
2; 0
y = gy(t) = (1 t) ay + tby
curve
fx(t) = (1 t)2 ax + 2t(1 t) bx + t2cx
2; 1
curve
curve
4t3(1-t)1dx + t4ex
2; 3
10
curve
15
10
To illustrate the B), I will use an image that is illustrated in the student section of the paper
using dogs. Imagine that there is a dog at the beginning terminal point and a dog at each control point.
Imagine that there is a treat at the second terminal point. Before all motion begins, the dog at the
terminal point is looking at the dog at the nearest control point. This line of sight is the first tangent
line. The dog at the control point nearest to the other terminal point is looking at the bone. This dogs
line of sight is the second tangent line. In the constructions that follow, there are many lines that appear
that connect the points and t-values. You will see that the line formed by each terminal point and the
control point nearest to it will be tangent to the curve at the terminal point.
11
Another way to consider the tangent lines is to look at the equations of the curves and the slope
of the lines formed by each terminal point and the nearest control point. Consider a quadratic Bzier
curve. Its equations are fx(t) = (1 t)2 ax + 2t(1 t) bx + t2cx and gy(t) = (1 t)2 ay + 2t(1 t) by + t2cy
and its graph could be:
B (bx, by)
C (cx, cy)
A (ax, ay)
The slope of AB is
y
x
by a y
bx a x
y
x
c y by
c x bx
Since
and
dy
dx
dt
dx
dt
dy
dx
dy / dt
dx / dt
dy / dt
dx / dt
2 a y 2 a y t 2b y 4b y t 2 c y t
2 a x 2 a x t 2bx 4bx t 2 c x t
dy
dx
2 a y 2b y
2 a x 2bx
a y by
a x bx
by a y
bx a y
When t = 1 and when the curve is at the second terminal point C (cx , cy),
by c y
bx c x
c y by
c x bx
dy
dx
2b y 2c y
2b x 2 c x
Therefore the derivative of the curve at a terminal point is equal to the slope of the line that contains
that point and so lies on the line tangent at that point.
A specific example of points in a cubic Bzier curve is illustrated first by the graph:
10
C (6, 8)
8
B (3, 5)
4
A (1, 2)
D (10, 1)
5
10
15
20
25
-2
-4
-6
13
When t = 0,
dy
dx
The slope of AB =
9
6
3
2
52
3 1
dy
dx
and when t = 1,
3
2
9 30t 2
6 6t
dy
dx
9 30
66
21
12
8 1
6 10
7
4
7
4
Once again, the slopes of the tangent lines are equal to the derivative of the curve at the terminal
points.
14
Use Graph - Plot from the menu to plot the points at A (0,0), B (0,1) and C (1,1).
Select points A and B and Construct segment; repeat for segment BC.
*Note: I am indebted to Seth Bundy of Seattle, Washington for providing the information for
constructing Bzier curves on Geometers Sketch Pad and for granting me the permission to use his
work in my paper.
15
16
Repeat the construction: segment between points D and E, choosing center (D) and dilating from point
E with the same ratio. Label the newest point F. Again, as point D is moved, the points E and F also
move at the same rate or t-value.
17
18
Right mouse click on point C Edit plotted point. Change to (2, 1). This changes the curves shape.
However, the two terminal points remain tangent to the curve.
19
This is a pretty rigid form of a Bzier curve. By removing the assignment of points on the coordinate
system, and by following the same construction steps, a much more dynamic Bzier curve is produced.
20
To make a cubic Bzier curve, another control point is added, three more segments are
constructed and three more moving points are added and connected to the t-value. In the diagram
below, point A and point D are the terminal points and point B and point C are the control points. The
point E is the point that determines the t-value and the points F, G, H, I and J all move in concert with
that point. If point E moves along segment AB thus changing the ratio of segment AE to segment AB,
the other points move along their respect segments to match that value.
21
A curve can be copied and pasted a number of times and connected to make more and more
complex shapes.
Fourth and fifth degree Bzier curves created in Geometers Sketch Pad are shown below.
22
1. I used the Geometers Sketch Pad program to construct a Bzier curve with two terminal
points and two end points and hid the lines from being displayed.
2. I manipulated the points until I had an interesting curve, then displayed a Cartesian
coordinate system on the screen. I adjusted the four points so that they were on an intersection
of two grid lines. In the example below, A is on (-4, -2), B is on (-7, 4), C is on (9, 1) and D is
on (5, 6).
4. I set the TI-83+ calculator to accept parametric equations, entered the equations that I had
calculated, and used the graph button to display the curve.
24
25
Then, a column must be established for the t values. Here, the increments are in steps of 1/10.
26
The next challenge is the coding for the calculations of the points using the varying t values and
the three x and the three y values of the two terminal points and one control point. This is the actual
formula from the Excel spreadsheet.
=$D$2*(1-F2)^2+2*$D$3*F2*(1-F2)+$D$4*(F2)^2
The D2 cell contains the x-value of the beginning point.
The D3 cell contains the x-value of the control point.
The D4 cell contains the x-value of the ending terminal point.
The F2 cell contains the first of the t-values.
The Excel program will automatically insert the t-values in the F2 through F12 cells in the
appropriate place for the calculations for the G2 through G12 cells.
A similar formula is created to produce y values.
27
Similar steps are taken to produce a graph of a cubic Bzier curve. A fourth point (D) is added
and the formula used for calculations is expanded to:
=$D$2*(1-F2)^3+3*$D$3*F2*(1-F2)^2+3*$D$4*(F2)^2*(1-F2)+(F2^3*$D$5)
=$E$2*(1-F2)^3+3*$E$3*F2*(1-F2)^2+3*$E$4*(F2)^2*(1-F2)+(F2^3*$E$5)
28
In the image below, I chose a lower case s in the font Estrangelo Edessa, enlarged it to a
500 point size in Microsoft Word, copied it to the Geometers Sketchpad program, and used three
Bzier curves with two control points (cubic equation) to approximate the curve of the letter. I had
originally thought that a curve with one control point (quadratic equation) would be suitable for the
upper and lower curves of the s, but found that the added control point was required to form the
necessary angles. I was careful to match the endpoints of the connecting curves so that there would be
a smooth transition from one to the next. I realize that this will provide an approximation of the curve
of the letter, but I believe it is a reliable method for estimating curves of various types. An
approximation of the curves of a landform could be placed on an satellite image of the edge of a lake
for example, or the curve of a roller coaster, or the motions of an orbiting body.
29
The image above shows the letter s pasted into the Geometers Sketchpad program. The
points produced from the graph can be used in the general equations to produce accompanying
equations.
For the top section curve, the two terminal points are A1(0.07, 0.46) and D1(0.43, 0.47); the
two control points are B1(0.11, 0.67) and C1(0.40, 0.62). Substituting the values of these points
in the general equations fx(t) = (1-t)3 ax + 3t(1-t)2bx + 3t2(1-t) cx + t3dx and gy(t) = (1-t)3ay + 3t(1t)2by + 3t2(1-t) cy + t3dy, we have:
fx(t) = (1-t)3 (0.07) + 3t(1-t)2(0.11) + 3t2(1-t)(0.40) + t3(0.43)
gy(t) = (1-t)3 (0.46) + 3t(1-t)2(0.67) + 3t2(1-t)(0.62) + t3(0.47)
that simplify to:
fx(t) = 0.07(1-t)3 + 0.33t(1-t)2 + 1.2t2(1-t) + 0.43t3
gy(t) = 0.46(1-t)3 + 2.01t(1-t)2 + 1.86t2(1-t) + 0.47t3
30
Entering these equations into a TI-83+ calculator and graphing them produces the following
screens:
For the center section curve, the two terminal points are A2(0.07, 0.46) and D2(0.44, 0.15); the
two control points are B2(0.05, 0.26) and C21(0.52, 0.38). Substituting the values of these
points we have:
fx(t) = (1-t)3 (0.07) + 3t(1-t)2(0.05) + 3t2(1-t)(0.52) + t3(0.44)
gy(t) = (1-t)3 (0.46) + 3t(1-t)2(0.26) + 3t2(1-t)(0.38) + t3(0.15)
that simply to:
fx(t) = 0.07(1-t)3 + 0.15t(1-t)2 + 1.56t2(1-t) + 0.44t3
gy(t) = 0.46(1-t)3 + 0.78t(1-t)2 + 1.14t2(1-t) + 0.15t3
The second pair of equations can be entered into the TI-83+ calculator and the graph produced
is:
31
For the bottom section curve, the two terminal points are A3(0.05, 0.20) and D3(0.44, 0.15); the
two control points are B3(0.07, 0.03) and C3(0.38, -0.03). Substituting the values of these
points we have:
fx(t) = (1-t)3 (0.05) + 3t(1-t)2(0.07) + 3t2(1-t)(0.38) + t3(0.44)
gy(t) = (1-t)3 (0.20) + 3t(1-t)2(0.03) + 3t2(1-t)(-0.03) + t3(0.15)
that simply to:
fx(t) = 0.05(1-t)3 + 0.21t(1-t)2 + 1.14t2(1-t) + 0.44t3
gy(t) = 0.20(1-t)3 + 0.09t(1-t)2 0.09t2(1-t) + 0.15t3
When this final set of equations is put into the TI-83+ calculator and graphed, the full letter is
produced:
s
The figure on the right is the letter s in Estrangelo Edessa font, 130 point size.
32
The far left and far right curves are line segments, so they have two terminal points and no
control points. Their equations are first degree polynomials.
The terminal points for the left segment are A1(0.73, 0.60) and B1(0.73, 0.18). Using the
general form of the equations fx(t) = (1 t) ax + tbx and gy(t) = (1 t) ay + tby and substituting:
fx(t) = (1 t) (0.73) + t(0.73)
gy(t) = (1 t) (0.60)+ t(0.18)
to arrive at:
fx(t) = (0.73) (1 t) + (0.73)t
gy(t) = (0.60) (1 t) + (0.18)t
33
For the bottom section curve, the two terminal points are A2(0.73, 0.18) and D2(1.12,
0.22); the two control points are B2(0.78, 0.00) and C2(0.99, -0.02). Substituting the values of
these points we have:
fx(t) = (1-t)3 (0.73) + 3t(1-t)2(0.78) + 3t2(1-t)(0.99) + t3(1.12)
gy(t) = (1-t)3 (0.18) + 3t(1-t)2(0.00) + 3t2(1-t)(-0.02) + t3(0.22)
that simply to:
fx(t) = 0.73(1-t)3 + 2.34t(1-t)2 + 2.97t2(1-t) + 1.12t3
gy(t) = 0.18(1-t)3 + 0.00t(1-t)2 0.06t2(1-t) + 0.22t3
And lastly, the terminal points for the right vertical segment are A3(1.11, 0.60) and B3(1.11, 0.02).
Substitution yields:
34
u
The following pages are the letters i, s, and u calculated and plotted in an Excel
spreadsheet. The calculations are made with the same equations as were used above in the TI 83+
calculator. The first curve, the i is represented by the points A1 and B1, The three curves of the s
are represented by the points A2 D4, and the u by points A5 B7. The grid lines are hidden on the
chart.
35
36
This exercise combines the use of the Geometers Sketchpad program with the Cartesian
coordinate grid, calculations to produce the parametric equations, and how those equations are
displayed on the TI-83+ calculator and an Excel spreadsheet.
37
B(0,1)
C(1,1)
A(0,0)
Suppose there is a dog at A and a dog at B. The dog at point B sees something at point C.
He/she becomes interested in it and takes off toward C. As dog B moves, dog A chases it, always
adjusting his path to be aiming toward dog B. Dog As path is the Bzier curve. Points A and C are the
terminal points; where dog A is at the beginning of the scene and where dogs A and B are at the end of
the scene. (The analogy is stretched here, in supposing that both dogs arrive at the bone at the same
time.) Point B is the control point. In a Bzier curve, the terminal points each lie on the line tangent
with the control point. In the dog example, these lines are represented by the lines of sight of the dogs
before they take action (i.e. dog B is looking at the food or bone or cat in corner C and dog A is
looking at dog B).
38
This is a very useful image to have in mind while playing with applets and construction board
examples. When manipulating any of the three points, (dogs or bone), changes are produced in the
orientation of the two terminal points, in the tangent lines and the curve that is produced.
B(0,1)
C(1,1)
A(0,0)
The one control point with two terminal points curve is the most basic Bzier curve and produces a
quadratic equation:
P(t) = [ (1-t)A + (t )B] (1-t) + [ (1-t)B + tC] t
with 0 t 1
Using this equation before the dogs start moving, at t = 0, we find that
P(0) = [ (1-0) A + (0) B] (1-0) + [ (1-0) B + (0) C] 0
= A or (0,0)
which is where the curve begins.
Using the equation at the end of movement, at t = 1, we find that
P(1) = [ (1-1) A + (1) B] (1-1) + [ (1-1) B + (1) C] 1
= C or (1,1)
which is where the curve ends.
x = (0 + 2(0) + 1) /4 =
and y = (0 + 2(1) + 1) / 4 =
P(t) = (A + 6B + 9C)/16
with 0 t 1
By distributing through the square brackets and simplifying, we arrive at the equation:
P(t) = (1-t)2 A + 2t(1-t) B + t2C
This is a parametric equation as it includes the variable t , but it also involves the x and y variables for
each of the two terminal points (points A and C in this example) and the control point(s) (point B in
this example). In order to make the calculations a bit more manageable, Mr. Staples (2005) suggests a
separate equation for the x-variable and another for the y-variable. In doing so, we arrive at the pair of
equations:
Px(t) = (1-t)2 x1 + 2 t(1-t) x2 + t2 x3
Py(t) = (1-t)2 y1 + 2 t(1-t)y2 + t2 y3
with point A having the coordinates (x1, y1), point B having the coordinates (x2, y2), and point C having
the coordinates (x3, y3).
By adding another control point so that we have two terminal points and two control points, we
add another degree to the polynomial and arrive at a cubic equation. The equations for a cubic Bzier
curve, i.e. a curve with two terminal points and two control points is:
P(t) = (1-t)3 A + 3t(1-t)2B + 3t2(1-t) C + t3D
with 0 t 1
40
2. Write the general equation for calculating the y-value of a Bzier curve with two terminal points and
one control point.
(answer)
3. Use the points (1, 2) and (5, 1) as the two terminal points. Choose the point (3, 4) as the control
point. Identify the following values:
x1
(answers) 1
x2
x3
y1
y2
y3
4. Use these values and equations to calculate the equations for this curve.
(answer)
(answer)
5. On the TI-83+ calculator, go to the Mode screen and choose Par on the third line.
41
7. Go to the Window screen and set the Tmin = 0, Tmax = 1, Tstep = 0.1.
8. Press the Graph button to display your graph. If the graph does not display to your liking, you
may need to go to the Window screen and adjust the Xmin, Xmax, Ymin and Ymax values.
(Remember that the smallest value for t is 0 and the largest value for t is 1, and you can get an idea for
what the size of the these values need to be.)
8. Now, choose your own points and repeat the process with a cubic Bzier curve with two terminal
points and two control points.
42
Use the formula for a quadratic Bezier curve: P(t) = [A(1-t) Bt](1-t) + [B(1-t) + Ct]t.
Describe the steps required to arrive at the formula below.
(answer) distributing what is outside the [ ] ; P(t) = A(1-t)2 + Bt(1-t) + Bt(1-t) + Ct2
combine like terms to arrive at the formula
Py(t) =
Fill in the chart below with coordinates for points A, B, and C at (0, 0), (0, 1) and (1, 1) respectively.
Use the equations from above and the values of t to calculate the values for the two columns on the
right.
(answers in blue)
t
Points
A
B
C
coordinate
x1
x2
x3
coordinate
y1
y2
y3
value x
0
0
1
value y
0
1
1
0
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
Px(t)
Py(t)
0
0.01
0.04
0.09
0.16
0.25
0.36
0.49
0.64
0.81
1
0
0.19
0.36
0.51
0.64
0.75
0.84
0.91
0.96
0.99
0.1
43
Chart the values from the two right columns below. Use the appropriate corners for points (0,0), (0,1)
and (1,1). Connect the points with a smooth curve.
(answers in blue)
Now, lets turn to an excel spreadsheet to set up the calculations and see how what affect changing our
points have on the curve.
First, ignoring the small column on the left, write capital letters starting with A over the below.
Then, ignoring the first row, write numbers down the left. You will use these letters and numbers to
identify the cells in the graph. For example, the cell with the word Points is A1 and the cell with the
value 0.6 under t is F8.
(answers in blue)
1
2
3
4
5
6
7
8
9
10
11
12
A
Points
A
B
C
B
coordinate
x1
x2
x3
C
coordinate
y1
y2
y3
D
value x
E
value y
F
t
G
Px(t)
H
Py(t)
0
0.1
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
44
In the excel spreadsheet program, type in the words, letters and values as they are given in the previous
graphs. Also add the x and y values for the points A, B, and C. Do not write in the calculated values
under Px(t) and Py(t).
In cell G2, type in the following exactly: =$D$2*(1-F2)^2+2*$D$3*F2*(1-F2)+$D$4*(F2)^2
In cell H2, type in the following exactly: =$E$2*(1-F2)^2+2*$E$3*F2*(1-F2)+$E$4*(F2)^2
(These are the two formulas that you derived earlier and their translation to excel coding and reference
to cells with the corresponding values.)
Now, select cell G2 again. There should be a bold-lined box around the cell. In the lower right of that
box, there is a tab. Click and drag that tab down the column until it includes the G12. Values should
appear that match what you calculated by hand on the first page. Do the same for the second formula in
cell H2. The second set of values should match your values as well.
(answers in blue)
value x
value y
Px(t)
Points
coordinate
coordinate
x1
y1
x2
y2
0.1
x3
y3
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
0
0.01
0.04
0.09
0.16
0.25
0.36
0.49
0.64
0.81
1
Py(t)
0
0.19
0.36
0.51
0.64
0.75
0.84
0.91
0.96
0.99
1
Save as Bezier 1.
Now, its time to get a chart.
Select cells G2 H12 (dont use the bold tab this time just highlight these cells). Then click on the
chart wizard button from the toolbar
. In the window that appears, choose XY (Scatter) from the
left and Scatter with data points connected by smooth lines from the right. Click Finish.
A chart will appear that may or not be in the shape of a square. Manipulate the chart until it more or
less matches what you graphed by hand.
Save again.
Congratulations! You have created a basic Bezier curve!
45
(answers in blue)
value x
value y
Px(t)
Points
coordinate
coordinate
x1
y1
x2
y2
0.1
x3
y3
0.2
0.3
0.4
0.5
0.6
0.7
0.8
0.9
1
0
0.01
0.04
0.09
0.16
0.25
0.36
0.49
0.64
0.81
1
Py(t)
0
0.19
0.36
0.51
0.64
0.75
0.84
0.91
0.96
0.99
1
46
Challenge Problems
1. Determine the equations that are needed to create the letters of your initials. Graph them on the
graphing calculator.
2. Find a satellite image of a curvy mountain road. Determine the equation(s) of a curve(s) that will fit
that image and graph on the calculator or in Excel.
3. Find a satellite image of the edge of a lake. Create curves to match the shoreline on the calculator or
Excel.
4. Create the curves of your own roller coaster and the equations that match them.
47
Bibliography
Core-Plus Mathematics Project. Contemporary Mathematics in Context Course 4 Part B. GlencoeMcGraw-Hill. Columbus, Ohio. 2003.
Groleau, Timothe. Approximating Cubic Bzier Curves in Flash MX. Websource:
http://www.timotheegroleau.com/Flash/articles/cubic_bezier_in_flash.htm . 2002.
Hoggar, S.G. Mathematics of Digital Images. Cambridge University Press, Cambridge. 2006.
Kirsanov, Dmitry. Nonlinear Design. Websource: http://www.webreference.com/dlab/9902/ . 1999.
Purcell, Edwin J., Varberg, Dale. Calculus with Analytic Geometry Fourth Edition. Prentice-Hall Inc.,
Englewood Cliffs, New Jersey. 1984
Staples, Ed. Bezier curves: A classroom investigation. Australian Senior Mathematics Journal. July
2005.
Welchons, A.M., Krickenberger, W.R., Pearson, Helen R. Algebra Book Two. Ginn and Company.
1957.
Additional websources:
http://en.wikipedia.org/wiki/B%C3%A9zier_splines
http://msdn.microsoft.com/en-us/library/ms536354.aspx
http://web.cs.wpi.edu/~matt/courses/cs563/talks/curves.html
48