The classical Mandelbrot set is the set of complex numbers c for which the sequence zn does not diverge to infinity under the recurrence relation
Starting from Costas Simeonidis's GPL-licensed Mandelbrot viewer, I modified the code and added animation. Points inside the set are usually shown in black, but here they are colored according to their complex values.

Drag the mouse to draw a rectangle and zoom in on that region. The default iteration count, or recursion depth, is 16. Click [Start] to animate the process by gradually increasing the iteration count, so you can watch the set take shape step by step.
Zooming in near the origin gives the image below.

You can view a spiral structure here.

The animation smoothly zooms from the full view down into this spiral.
Replacing the quadratic map with an exponential function also produces a Mandelbrot-like set:
The result can be viewed here.

The default iteration count is 4. Press [Start] to animate the set as the iteration count increases.
A magnified view around the origin is shown below.

You can also view the spiral region here, although rendering may take some time.

The Riemann zeta function is defined by the series
$$ \zeta(s)=\frac{1}{1^s}+\frac{1}{2^s}+\frac{1}{3^s}+\cdots $$You can explore its graph here.

Rendering is done with HTML Canvas and Web Workers. The number of terms is used to truncate the series, and the default is 16. Click [Start] to animate the graph as the number of terms increases and to watch the zeros appear.
Replacing F(z) with the zeta function produces another Mandelbrot-type set:
The full view is available here.

Use the [Start] buttons for iterations and terms to animate those parameters separately.
This set was introduced in 1998 by Wuon at Cambridge University (arXiv link).
A zoom near the first non-trivial zeros is shown below. Rendering may be slow.

You can view the spiral here. This view is especially slow to render.

A flower-like structure appears in this region.
Although the maps are different, these Mandelbrot-type sets display surprisingly similar patterns.
| F(z) | z2 | ez | ζ(z) |
|---|---|---|---|
| Full View | ![]() |
![]() |
![]() |
| Near Origin/ Zeros |
![]() |
![]() |
![]() |
| Spiral | ![]() |
![]() |
![]() |
The resemblance may be related to the following facts:
Each point in a Mandelbrot set either remains bounded or diverges to infinity. In a loose analogy, the universe may also either expand forever or eventually collapse. Perhaps each point could be imagined as representing a different universe.
Because the naïve series converges slowly, the program switches between several formulas as needed:
Accuracy tests for these formulas are summarized here:
Accuracy Comparison of the Algorithms
© 2013, xseek-qm.net
広告