Mandelbrot - Help

Author: Gerold Zuderstorfer

This small program demonstrates the calculation of the Mandelbrot set.

Notes on use

A click (with the left mouse button) or a short touch of the screen opens a menu where you can see and edit the co-ordinates and the zoom factor etc.

Desktop: A click with the right mouse button zooms in.

Mobile: A long touch zooms in.

The calculated image of the Mandelbrot set takes the whole browser window.

What is the Mandelbrot set?

The Mandelbrot set is described by a simple formula in the range of the complex numbers.

z0=0 zn+1= zn2 +c

The calculation starts with z0 = 0. The constant c contains the co-ordinates of a point in the graphics.

In the first iteration a new number z1 is calculated by applying the formula above. When the iterations are repeated in that way, one of two things will happen:

But what do the different colors in the graphics mean? Points within the Mandelbrot set are colored black (or white). For all the other points the color indicates how many iterations it takes until the point z leaves the central area.

You can read more about the Mandelbrot set on Wikipedia (German: Mandelbrotmenge)

More notes on use

In the upper left corner you can see the following information:

In the menu you can edit many settings:

Motivation

The program is a byproduct of a simulation software we are developing. It serves as a benchmark test for our calculations. We hope you enjoy it!