Snow Flake 10 S
Snow Flake 10 S
Overview
The word “fractal” is often used in referring any object that is recursively constructed so that it appears
similar at all scales of magnification. There are many examples of complex real-life phenomena, such
as chaos, ferns, mountains, river networks, biological growth, that can be described and studied using
fractals. In this lab and project, we will analyze and generate a classic fractal, the Koch snowflake,
and its variations. While it is natural to use a computer to do recursive constructions, we will focus
on applications of sequences and series in our study.
A Variation of Koch Snowflake
Basic Construction: While Koch Snowflake starts with an equilateral triangle, this variation starts
with a square. A smaller square is then added to each of the four sides. It is done in such a way that
a side of each new square is the middle one-third of each side of the original figure. This process is
repeated again and again in each successive iteration. The final flake is the limit of this construction.
Finding Area and Perimeter: First notice that we are getting a sequence of flakes with more and
more sides by the same basic construction: each side is replaced by five sides of one-third of its length
at the next stage. Therefore, as we started at stage 0 with 4 sides, there are 4 ∗ 5 = 20 sides at stage
1, 4 ∗ 5 ∗ 5 = 100 sides at stage 2, and, more general, 4 ∗ 5n sides at stage n. Moreover, if we started
with a side of length 1 at stage 0, then each side will have a length of (1/3)n at stage n. That gives a
formula
T otP erimn = 4 ∗ 5n ∗ (1/3)n = 4 ∗ (5/3)n
for the perimeter of the flake at stage n. We all knew that this sequence diverges and the perimeter of
the final flake is hence infinite. To get a formula for the area, notice that the new flake at stage n ≥ 1
is obtained by adding a square of the side length (1/3)n to each side of the previous flake, that is, we
are adding 4 ∗ 5n−1 such squares at stage n. Therefore, the total new area added at stage n ≥ 1 is:
AreaAddn = 4 ∗ 5n−1 ∗ (1/3)n ∗ (1/3)n = (4/5) ∗ (5/9)n .
Since the area at stage 0 is 1 and the above area is added at each stage thereafter, we hence obtain
the following series for the area of the flake at stage n ≥ 1:
n
X
T otArean = T otArean−1 + (4/5) ∗ (5/9)n = 1 + (4/5) ∗ (5/9)k .
k=1
Apply our knowledge in geometric series, we obtain that the square snowflake has a finite area of
1 + (4/9)/(1 − (5/9)) = 1 + 1 = 2.
Assignment:
Repeat the same discussion and analysis of at least two different variations of the Koch snowflake.
Use your imagination but one of them should be the classic Koch snowflake, that is, instead of using
squares, start with an equilateral triangle and recursively add smaller triangles. Your focus should
be on how to use sequences and series to get formulas and limits of perimeters and areas. The given
Maple worksheets on the course website can be used as a tool to help you to verify and visualize. Have
a discussion on what you have learned, such as some interesting properties of the flake. For example,
as we have computed, the square flake has a finite area but infinite perimeter. Now, imagining that
you have a container with the flake as its base and fill it up with some paint. That means one could
paint an infinite area (the interior surface of the container) with a finite amount of paint! Such flakes
are also examples of curves that are everywhere continuous but nowhere differentiable. If needed, your
TA will help you to modify the given worksheets to generate the first few stages of your constructions.