Welcome to Fractal Forums

Fractal Art => Images Showcase (Rate My Fractal) => Topic started by: Pauldelbrot on January 12, 2010, 06:15:18 AM




Title: Launch
Post by: Pauldelbrot on January 12, 2010, 06:15:18 AM
(http://u5789.direct.atpic.com/32751/0/1677850/1024.jpg) (http://pic.atpic.com/1677850/1024)

The Volterra-Lotka Mandelbrot set.

Very slow to calculate. But it sure beats that crude diagram on page 126 of The Beauty of Fractals!

Nonadaptive antialiasing means every pixel has nine parameter pairs sampled. For each parameter pair, 100 dynamic-plane pairs were sampled, randomly distributed within an 0.5x0.5 square centered on the fixed point (1,1).

The outside pink-to-white gradient is escaping points, each pixel colored by average smoothed iterations of the 900 sampled points.

The orange-to-black gradient colors the points that display periodic behavior after a while. The color is by Lyapunov exponent: black means a not very stable cycle, and the paler oranges indicate a high degree of stability. In the big orange component at left, (1,1) is attracting; the brighter the orange the stabler it is. In the smaller, wedge-shaped orange components, (1,1) repels but there's an attracting cycle that typically rings (1,1).

The solid dark red regions pierced by these wedges exhibit "limit circle" attractors in the dynamics: the attractor is a closed curve, typically ringing (1,1), and points on the attractor rotate around it by a fixed irrational angle. Similar to a Siegel disk, only it's just a curve rather than a solid disk.

The purple regions exhibit strange attractors: the orbits are ergodic and irregular. The Lyapunov exponent is positive, and the shade of purple depends on it. The brighter the purple, the higher the exponent and the more chaotic the attractor.

Only three layers are used: one for the points where all samples escape, one for the points where some samples go to a strange attractor, and one for the points where some samples go to a periodic attractor. The latter two have some tiny specks of overlap, where the colors are combined additively.

The limit circle points with no other kind of attractor get colored by none of the layers; the background color was set to dark red.

Freely redistributable and usable subject to the Creative Commons Attribution license, version 3.0.

Detailed statistics:

Name: Launch
Date: January 11, 2010
Fractal: Volterra-Lotka Mandelbrot Set
Location: First quadrant
Depth: Very shallow
Min Iterations: 1
Max Iterations: 10000
Layers: 3
Anti-aliasing: 3x3, threshold 0, depth 1
Preparation time: 1 hour
Calculation time: 25 hours (2.5GHz dual-core E5200)


Title: Re: Launch
Post by: kram1032 on January 12, 2010, 03:14:24 PM
How exactly do you get a Lokta-Volterra Mandelbrot?
It's a multidimensional thing, isn't it?

x, y, t, \alpha, \beta, \gamma, \delta - combined in two differential equations...
How could you look at the full set?

It looks very nice, btw :) Just lacks features...

I wonder how julias of this would look like?


Title: Re: Launch
Post by: Pauldelbrot on January 12, 2010, 05:18:19 PM
How exactly do you get a Lokta-Volterra Mandelbrot?
It's a multidimensional thing, isn't it?

<Quoted Image Removed> - combined in two differential equations...
How could you look at the full set?

x and y are the dynamic plane coordinates. Discretization as described in TBOF removes t and the other four can all be set to 1 without loss in generality (and then the fixed point is forced to be at (1,1)). The discretization adds two new parameters, h and p, and these are the axes of the image above. Real, not complex, numbers.

Quote
It looks very nice, btw :) Just lacks features...

There are features, along the edges; zooms forthcoming.

Quote
I wonder how julias of this would look like?

I've posted on recently: Vortex (http://www.fractalforums.com/images-showcase-(rate-my-fractal)/vortex/).


Title: Re: Launch
Post by: kram1032 on January 12, 2010, 07:24:19 PM
oh, I see :)

(don't have that book... too bad^^)

Can't wait for some nice zooms :)
I guess the area where dark red and light purple overlap will be the most interesting?

Which meaning would this have biologically?
Inside the orange area, populations would not grow to infinity?

x,y definitely are the amount of pretadors and preys...
So, the border of this set would be, where all the pretadors die and thus the prey will grow agains infinity? Or will actually both populations grow to infinity?


Title: Re: Launch
Post by: Pauldelbrot on January 12, 2010, 11:24:50 PM
The border is where they vary chaotically. They tend to a fixed point in the main orange area. One or both go to infinity in the pink area.


Title: Re: Launch
Post by: Timeroot on January 13, 2010, 06:41:27 AM
what exactly are h and p in these equations? And just to check I understand:

At each pixel, h and p are determined by the coordinates... alpha, beta, gamma, and delta are all 1. Then, 100 random values of x and y are chosen from (0.5,0.5) to (1.5,1.5)... and the results correspond to the coloring as you describe. Is this correct? I have a feeling it's not...


Title: Re: Launch
Post by: Pauldelbrot on January 13, 2010, 03:42:05 PM
what exactly are h and p in these equations? And just to check I understand:

At each pixel, h and p are determined by the coordinates... alpha, beta, gamma, and delta are all 1. Then, 100 random values of x and y are chosen from (0.5,0.5) to (1.5,1.5)... and the results correspond to the coloring as you describe. Is this correct? I have a feeling it's not...

Very close. (0.75,0.75) to (1.25,1.25).

The discretization is a combination of the Euler method and the Heun method:

x_{n + 1} = x_n + \frac{h}{2} (f(x_n, y_n) + f(x_n + pf(x_n, y_n), y_n + pg(x_n, y_n)))

y_{n + 1} = y_n + \frac{h}{2} (g(x_n, y_n) + g(x_n + pf(x_n, y_n), y_n + pg(x_n, y_n)))

with the functions

f(x, y) = x - xy

g(x, y) = xy - y

being the functions in the differential equations being solved numerically. TBOF uses \rho instead of p in the above, but there's no rho key on my keyboard and I doubt my compiler would accept it as a variable name in source code, so ... :)


Title: Re: Launch
Post by: kram1032 on January 13, 2010, 04:52:43 PM
nice :)
So there are cases, where also the pretadors will go against infinity? Interesting... :)