Skip to content

Animating escape-time fractals including the Mandelbrot set, Julia set, Burning Ship fractal, and the Newton Fractal in Python using MatPlotLib.

Notifications You must be signed in to change notification settings

GrahlmanMatthew/Escape-Time-Fractal-Animations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Escape-Time Fractal Animations

What are Escape-Time Fractals?

First and foremost, fractals are geometric shapes which display a unique property known as self-similarity. This means that they have the same pattern(s) embedded within themselves at different scales, which remains true at arbitrarily small scales.

While many distinct types of fractals exist, this project only focuses on animating the subset known as escape-time (or orbit) fractals. These fractals can be generated by iterating through a formula on each point within a given space. If a point begins to diverge as the formula iterates, it escapes; otherwise, it remains bounded. Four of the most well-known escape-time fractals are the Mandelbrot set, Julia set, Burning Ship fractal, and the Newton fractal.

The Mandelbrot Set

The Mandelbrot set is the set of complex numbers c for which the function fc(z) = z2 + c does not diverge to infinity when iterated from z0 = 0.

The Julia Set

The Julia set, defined by the function fc(z) = z2 + c, consists of values such that an arbitrarily small perturbation can cause chaotic, changes in the sequence of iterated function values. For a fixed parameter c, the Julia set is found by iterating the function on each point z.

The Burning Ship Fractal

The Burning Ship Fractal is a variant of the Mandelbrot set. This fractal can be generated by iterating the function zn+1 = (|Real(zn)| + i|Imaginary(zn)|)2 + c, z0 = 0 in the complex plane c, which will either escape or remain bounded. The difference between it and the Mandelbrot set is that we take the absolute values of both the real and imaginary components before squaring at each iteration.

The Newton Fractal

A generalization of Newton's iteration can be defined by zn+1 = zn - a(f(zn) / f'(zn)) where the special choice a = 1 corresponds to the Newton Fractal. This fractal differs from the previous ones in the sense that it applies Newton’s method to a fixed function then checks whether a point converges to a root.

Output for f(z) = z3 - 1

Newton Fractal for f(z) = z5 + z3 + z - 1

Newton Fractal for f(z) = z9 + z6 + z3 - 1

References

  1. Wikipedia - Fractals
  2. Maplesoft - Escape Time Fracatals
  3. Matplotlib - Animate Your Own Fractals in Python with Matplotlib
  4. Wikipedia - Mandelbrot Set
  5. Complex Analysis - The Mandelbrot Set
  6. Wikipedia - Julia Set
  7. Wikipedia - Burning Ship Fractal
  8. Wikipedia - Newton Fractal
  9. Learning Scientific Programming with Python - The Newton Fractal

About

Animating escape-time fractals including the Mandelbrot set, Julia set, Burning Ship fractal, and the Newton Fractal in Python using MatPlotLib.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages