Jonathan. Frech’s WebBlog

Multibrot Set (#168)

Jonathan Frech

The Mandelbrot Set is typically defined as the set of all numbers $c\in\mathbb{C}$$c\in\mathbb{C}$ for which — with $z_0=0$$z_0=0$, $z_{n+1}=f_c(z_n)$$z_{n+1}=f_c(z_n)$ and $f_c(z)=z^2+c$$f_c(z)=z^2+c$ — the limit $\lim\limits_{n\to\infty}z_n$$\lim\limits_{n\to\infty}z_n$ converges. Visualizations of this stan­dard Mandelbrot Set can be seen in three of my posts (Mandelbrot Set, Mandelbrot Set Miscalculations and Mandelbrot Set II).

However, one can extend the fractal’s definition beyond on­ly having the exponent 𝟤 in the function to be $f_c(z)=z^\text{exp}+c$$f_c(z)=z^\text{exp}+c$ with $\text{exp}\in\mathbb{R}$$\text{exp}\in\mathbb{R}$⁠¹. The third post I mentioned actually has some generalization as it allows for $\text{exp}\in\{2,3,4,5\}$$\text{exp}\in\{2,3,4,5\}$, although the approach used cannot be extended to real or even rational numbers.

The method I used in the aforementioned post consists of manually expanding $(a+b\cdot i)^n$$(a+b\cdot i)^n$ for each 𝑛. The polynomial $(a+b\cdot i)^3$$(a+b\cdot i)^3$, for example, would be expanded to $(a^3-3\cdot a\cdot b^2)+(3\cdot a^2\cdot b-b^3)\cdot i$$(a^3-3\cdot a\cdot b^2)+(3\cdot a^2\cdot b-b^3)\cdot i$.
This method is not on­ly tedious, error-prone and has to be done for every exponent (of which there are many), it also on­ly works for whole-num­ber exponents. To visualize real Multibrots, I had to come up with an algorithm for complex num­ber ex­po­nen­ti­a­tion.

Luckily enough, there are two main ways to rep­re­sent a complex num­ber, Cartesian form $z=a+b\cdot i$$z=a+b\cdot i$ and polar form $z=k\cdot e^{\alpha\cdot i}$$z=k\cdot e^{\alpha\cdot i}$. Converting from Cartesian to polar form is simply done by finding the num­ber’s vector’s magnitude $k=\sqrt{a^2+b^2}$$k=\sqrt{a^2+b^2}$ and its angle to the 𝑥-axis $\alpha=\mbox{atan2}(\frac{a}{b})$$\alpha=\mbox{atan2}(\frac{a}{b})$. (The function $\mbox{atan2}$$\mbox{atan2}$ is used in favor of $\arctan$$\arctan$ to avoid having to divide by zero. View this Wikipedia article for more on the function and its definition.)
Once having converted the num­ber to polar form, ex­po­nen­ti­a­tion becomes easy, as

$$z^\text{exp}=(k\cdot e^{\alpha\cdot i})^\text{exp}=k^\text{exp}\cdot e^{\alpha\cdot\text{exp} \cdot i}.$$$$z^\text{exp}=(k\cdot e^{\alpha\cdot i})^\text{exp}=k^\text{exp}\cdot e^{\alpha\cdot\text{exp} \cdot i}.$$

With the exponentiated $z^\text{exp}$$z^\text{exp}$ in polar form, it can be converted back in Cartesian form with

$$z^\text{exp}=k^\text{exp}\cdot (\cos{(\alpha\cdot\text{exp})}+\sin{(\alpha\cdot\text{exp})}\cdot i\big).$$$$z^\text{exp}=k^\text{exp}\cdot (\cos{(\alpha\cdot\text{exp})}+\sin{(\alpha\cdot\text{exp})}\cdot i\big).$$

Using this method, converting the complex num­ber to perform ex­po­nen­ti­a­tion, I wrote a Java program which visualizes the Multibrot for a given range of exponents and a num­ber of frames.
Additionally, I added a new strategy for coloring the Multibrot Set, which consists of choosing a few anchor colors and then linearly interpolating the red, green and blue values. The resulting images have a reproducible (in contrast to ran­dom­ly choosing colors) and more interesting (in contrast to on­ly varying brightness) look.

The family of Multibrot Sets can also be visualized as an animation, showing the fractal with an increasing exponent. The animated gif shown below was created using ImageMagick’s convert -delay <ms> *.png multibrot.gif command to stitch together the various .png files the Java application creates. To speed up the rendering, a separate thread is created for each frame, often resulting in 𝟣𝟢𝟢% CPU-usage. (Be aware of this should you render your own Multibrot Sets!)

To use the program on your own, either copy the source code listed below or download the .java file. The sections to change pa­ram­e­ters or the color palette are clearly highlighted using block comments (simply search for /*).
To compile and execute the Java application, run (on Linux or MacOS) the command javac multibrot.java; java -Xmx4096m multibrot in the source code’s directory (-Xmx4096m tag optional, though for many frames at high quality it may be necessary as it allows Java⁠² to use more memory).
If you are a sole Windows user, I recommend installing the Windows 10 Bash Shell.

Source code: multibrot.java


[1][2020-07-29] Admittedly, not the best of names for a generic exponent.
[2][2020-07-29] More precisely, the JVM.