Inline videos. See also:Category: Articles with embedded Videos..

Koch curve

From Biocrawler, the free encyclopedia.

(Redirected from Koch snowflake)
The first four  of the Koch snowflake.
Enlarge
The first four iterations of the Koch snowflake.
The Koch curve.
Enlarge
The Koch curve.
Contents

Description

The Koch curve is a mathematical curve, and one of the earliest fractal curves to have been described. It appeared in a 1904 paper entitled "Sur une courbe continue sans tangente, obtenue par une construction géométrique élémentaire" by the Swedish mathematician Helge von Koch. The better known Koch snowflake (or Koch star) is the same as the curve, except it starts with an equilateral triangle instead of a line segment. Eric Haines has developed the sphereflake fractal, a three-dimensional version of the snowflake.

One can imagine that it was created by starting with a line segment, then recursively altering each line segment as follows:

  1. divide the line segment into three segments of equal length.
  2. draw an equilateral triangle that has the middle segment from step one as its base.
  3. remove the line segment that is the base of the triangle from step 2.

After doing this once the result should be a shape similar to a cross section of a witch's hat.

The Koch curve is in the limit approached as the above steps are followed over and over again.

The Koch curve has infinite length because each time the steps above are performed on each line segment of the figure its length increases by one third. The length at step n will therefore be (4/3)n and the fractal dimension is log4/log3 =~1.26 (bigger than the dimension of a line {1} but smaller than Peano's Space-filling curve {2}).

The Koch curve is continuous, but not differentiable anywhere.

Implementation

Here follows a sample implementation of the Koch curve for a Turtle robot written in a COMAL-like language. It can be tried out online with Web Turtle (http://www.sonic.net/~nbs/webturtle/webturtle.cgi).

; change value of A to change depth of level. 5 is max.
LET A 2
; calculate adjusted side-length
LET B 243
REPEAT A
LET B B/3
NEXT
; place pointer
POINT 150
MOVE 140
POINT 0
; start
GO SIDE
RIGHT 120
GO SIDE
RIGHT 120
GO SIDE
; finished.
END
; main loop
# SIDE
GO F
LEFT 60
GO F
RIGHT 120
GO F
LEFT 60
GO F
RETURN
; forward
# F
IF A > 1
; go deeper depending on level
LET A A-1
GO SIDE
LET A A+1
ELSE
; or just do a single line
DRAW B
ENDIF
RETURN

External link

See also

fa:برخال کخ fr:Flocon de Koch ja:コッホ曲線 pt:Curva de Koch ru:Кривая Коха sl:Kochova snežinka sv:Koch-kurvan

Wikipedia (http://en.wikipedia.org/wiki/Main_Page) Koch_snowflake (http://en.wikipedia.org/wiki/Koch_snowflake) version history (http://en.wikipedia.org/w/index.php?title=Koch_snowflake&action=history) GNU Free Documentation Lizenz (http://en.wikipedia.org/wiki/Wikipedia:Text_of_the_GNU_Free_Documentation_License) CC-by-sa (http://creativecommons.org/licenses/by-sa/2.5/)

Personal tools
Google Search
Google
Web
biocrawler.com

 
In other languages