Von Koch Curve
Problem
Watch the video below to see the first six stages of the infinite process for generating the Von Koch curve.
The original equilateral triangle has side $1$ unit. Work out the length of this curve in the first few stages and the length of the fractal curve formed when the process goes on indefinitely.
Now suppose you made a poster for your classroom with coloured paper by drawing an equilateral triangle for Stage 0 and then cutting smaller equilateral triangles and sticking them on the edge. What is the total area of all the triangles you would stick on one edge if you could continue the process indefinitely to make the Von Koch curve? So what is the area inside the Von Koch curve?
Find the dimension of the Von Koch curve using the formula $n=m^d$, where where $n$ is the number of self similar pieces in the generator and $m$ is the magnification factor.
See First Forward for a ten part series giving an introduction to Logo programming for beginners. Can you program the Von Koch curve?
Getting Started
Teachers' Resources
This is a Logo program to draw the Von Koch curve.
You can download a free copy of the MSW Logo software from http://www.softronix.com/logo.html
to allvonkoch
;draws 6 stages on same screen
cs pu fd 100 lt 90 fd 300 rt 90 pd
vonkoch2 200 0
pu rt 90 fd 250 lt 90 pd
vonkoch2 200 1
pu rt 90 fd 250 lt 90 pd
vonkoch2 200 2
pu bk 300 lt 90 fd 500 rt 90 pd
vonkoch2 200 3
pu rt 90 fd 250 lt 90 pd
vonkoch2 200 4
pu rt 90 fd 250 lt 90 pd
vonkoch2 200 5 end
to side :x :y
if :y=0 [fd :x stop]
side :x/3 :y-1
lt 60 side :x/3 :y-1
rt 120 side :x/3 :y-1
lt 60 side :x/3 :y-1
end
to vonkoch1
;superimpose 6 stages
cs pu bk 300 lt 90 fd 200 rt 90 pd
vonkoch2 500 0
vonkoch2 500 1
vonkoch2 500 2
vonkoch2 500 3
vonkoch2 500 4
vonkoch2 500 5
end
to vonkoch2 :x :y
;draws single curve size :x stage :y at current cursor position
repeat 3 [side :x :y rt 120]
end
to vonkoch3
;draws sixth stage
cs pu bk 300 lt 90 fd 200 rt 90 pd
vonkoch2 500 5
end