Gian Saß

The Julia set

· Gian Sass

Quite like I described the Mandelbrot set, the Julia set is also a Mathematical fractal that is computed with almost the exact iteration. The iteration is

z_{n+1}=z_n^2+c,

a quadratic polynomial in this case. Here, z and c are both complex numbers, but play a rather different role than in the Mandelbrot equation.

Going back to our original understanding of this iteration, c was a constant mapped to a point in the set, and z a value used for computation with an initial value of z_0 = 0. Now, by repeating the iteration it was decided that if |z| > 4 the point was not part of the Mandelbrot set. As the points inside the set will naturally not converge (for they are part of the set), the iteration is restricted to a finite number of recursions.

What separates the Julia set(s) is that the meanings of z and c have been swapped. Now z has an initial value mapped to a point in the set and c is now an arbitrary constant. Thus, there exist an infinite amount of Julia sets.

I will present the Julia set only in its form of a quadratic polynomial, as we will discover semblances to the Mandelbrot set when discussing the many variations.

Some Julia sets

Let us start with the most simple form of the set when we setc = 0 , thus reducing the iteration toz_{n+1} = z_n^2. What follows is a simple circle, also called the unit circle. It has a radius of one and sits at the origin.

screen-shot-2016-11-20-at-15-40-38
c = 0

 

A fine explanation for this figure is that any number n \in \mathbb{C} will always to converge to zero (and thus be part of the set) if |n| < 1. The entire set of this form are the points with this property.

When we increase the real value of c we see a fractal of spirals emerge which appear to be mirrored both horizontally and vertically.

screen-shot-2016-11-20-at-15-40-55
c = 0.3

As we increase that value the spirals begin to distance themselves from each other and shrink. Notable is that the vertical distance grows faster than the horizontal one.

For larger imaginary values of c we find another interesting spiral pattern. Hereby the spirals repeat inside each other infinitely. At c=0.76i the spirals begin to fade out and the figure looks more like branches connecting with each other. Similar to the shape before, the figure dissolves as the value becomes larger. If we now make the value negative we see the same pattern only mirrored horizontally.

c = 0.7i
c = 0.7i
c = -0.7i
c = -0.7i

When we assign negative real values toc we find some astonishing similarities to the Mandelbrot set. Atc=-0.67 the figures becomes very much resembling of the Mandelbrot shape. The figure is again mirrored on both axes. Increasing that value in the negative direction condenses the fractal into lines, or branches. This looks similar to the tail of the Mandelbrot set.

screen-shot-2016-11-20-at-15-42-19
c=-0.67
c=-1.42
c=-1.42

More interesting shapes can be found if mixing real and imaginary values. I encourage you to explore by yourself!

But what about the Mandelbrot set? All of the figures presented can be indeed found inside the Mandelbrot set, as the Mandelbrot set is actually the sum of all possible Julia sets. Astounding, isn’t it? This is because the Mandelbrot set at each point has a different value ofc . And that is why all Julia sets (in the form of a quadratic polynomial) combined form the Mandelbrot set.

I have vaguely hinted before, but the Julia set may have different iteration types. For example there isz_{n+1} = z_n^3+c or evenz_{n+1} = \sin(z) \cdot c ! The Internet will gift you with astonishing videos and images about these at no cost at all.