Application Center - Maplesoft

App Preview:

Fractal Fun!

You can switch back to the summary page by clicking here.

Learn about Maple
Download Application




Fractal Fun!

Introduction

1. Mandelbrot Set
1.1 The Original Mandelbrot Set
1.2 Mandelbrot Self-Similarity
1.3 Mandelbrot Variation

2. Julia Set

 

 

 

                                      

 

Introduction

 

A simple search in your favorite search engine will attest to the popularity of fractal art. That said, many people are often shocked to learn that these visually stunning images are created by iterating a simple complex formula to create a fractal object. A fractal object is any geometric object that posses the property of self-similarity. Self-similarity is a term attributed to Benoît Mandelbrot to describe any object that appears roughly the same at any level of magnification. Fractal objects are readily prevalent in nature and can be easily seen by examining the intricate shape of sea shells, snowflakes and lightning bolts.

This application illustrates how Maple can be used to generate the two most famous fractal objects: the Mandelbrot Set and the Julia Set.

 

The custom procedures used throughout this Document are defined in its Startup code-region (from the Edit menu, select Startup Code).

1. The Mandelbrot Set

 

The Mandelbrot Set is a mathematical set that is generated by iterating a simple formula Z[n+1] = Z[n]^a+`#msub(mi("Z"),mi("c"))` where `#msub(mi("Z"),mi("c"))` is any point on the complex plane, a is the corresponding exponent, and Z[0] = 0. A point `#msub(mi("Z"),mi("c"))` is within the set if abs(Z) is bounded, and outside the set if it’s unbounded; in practice, this is determined by noting whether abs(Z) exceeds a bailout value after a specified number of iterations.   

The Original Mandelbrot Set

The image shown at right is the most famous Mandelbrot set. It was generated by iterating the equation: Z[n+1] = Z[n]^2+Zc.

NULLNULL

The first step in creating the Mandelbrot is to generate a list (or in this case, a Matrix) of complex numbers which will vary the point Zc.

 

pts := 400:

View(FitIntensity(img))NULL

NULL

 

This image can be easily enhanced using the ImageTools  package.

 

BlackImage := Create(400, 400, proc (i) options operator, arrow; 0 end proc):

View(FitIntensity(imageRGB))

NULL

MaskImage := Create(400, 400, background = -1):

View(FitIntensity(imageMask))

NULL

NULL

imageComplement := Complement(imageRGB):

View(FitIntensity(imageComplement))

 

 

NULL

(1)

CheckImage := Checkerboard(20, 20, 20, foreground = .7, background = .2):

View(FitIntensity(imageCheck))

Mandelbrot Self-Similarity

 

As mentioned previously, a unique property common to all fractals is the property of self-similarity. The Mandelbrot Set shown in the previous section is self-similar in the neighborhood of the Misiurewicz point and the Feigenbaum point. These points can be found by magnifying into the area bounded by the white box below:

 

 

(2)

NULL

Mandelbrot Self-Similarity

Misiurewicz Point

The Misiurewicz Point is located at: -0.1011+ 0.9563i.

 

A threshold can be applied to the image in order to bring out the details of interest.

 

ZMisiurewicz := GenerateComplex(400, -0.950e-1, -.1025, .9500, .9600):

imageMisiurewicz := Create(400, 400, 1):

View(FitIntensity(imageMisiurewicz))NULL

Feigenbaum Point

The Feigenbaum Point is located at: -0.1528+ 1.0397i

NULL

ZFeigenbaum := GenerateComplex(400, -.1515, -.1575, 1.032, 1.043):

View(FitIntensity(imageFeigenbaum))NULLNULL

 

Mandelbrot Variation

 

Another spellbinding Mandelbrot image can be obtained by magnifying into the area specified by the point -0.7454+ 0.1130i. The results of the magnification can be seen below.

 

 

 

Zc1 := GenerateComplex(400, -.74542138, -.74543162, .11300388, .11301412):

View(FitIntensity(imgVariation))``

 

 

This image can be modified by shading according to a threshold value or by applying a custom coloring procedure. The coloring procedure can be found in this Document's Startup code-region (from the Edit menu, select Startup Code).

imgModified := Threshold(imgVariation, 0., low = 600.0, method = below):

View(FitIntensity(imgModified))

NULL

 

An attractive three-layer color image can also be created, using one of the grayscale images above. This is accomplished by first creating an empty color image and then setting each of its red, green, and blue layers to modified versions of the grayscale image. The procedure Colorize is defined in this Document's Startup code-region (from the Edit menu, select Startup Code).

 

imgColorized := Create(400, 400, 3):
 

View(FitIntensity(imgColorized))

NULL

NULL

NULL

2. The Julia Set

 

Julia Set fractals are formed in a similar manner to Mandelbrot Set fractals. The only difference is that the Julia Set varies the complex number Zn while keeping Zc constant, while the Mandelbrot Set varies Zc and the initial starting value of Zn is 0+0*I. This difference causes there to be an infinite number of Julia Set fractals for every distinct Mandelbrot Set.

 

The fractals below were all created by iterating this formula for different values of Zc: Z[n+1] = Z[n]^2+Zc

 

 

Julia Set Fractals for different values of Zc 

Zc = 1-(1+sqrt(5))*(1/2)+0*I

Zc = -.4+.6*I

Z1 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia1))

 

NULL

Z2 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia2))

 

NULL

Zc = .285+0*I

Zc = .285+0.1e-1*I

Z3 := GenerateComplex(400, -2, 2, -1.35, 1.35); imgJulia3 := MyJulia(Z3, .285+0.*I)

View(FitIntensity(imgJulia3))

NULL

Z4 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia4))NULL

NULL

Zc = .45+.1428*I

Zc = -.70176-.3842*I

Z5 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia5))

``

``

Z6 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia6))``

NULL

NULL

Zc = -.835-.2321*I

Zc = -.8+.156*I

Z7 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia7))

NULL

Z8 := GenerateComplex(400, -2, 2, -1.35, 1.35):

View(FitIntensity(imgJulia8))

NULL

 

``