hp
toc

Lyapunov Fractal

2017-12-30, post № 189

Java, mathematics, programming, #chaos, #chaos theory, #fractal geometry, #fractal viewer, #Java 1.8

Lyapunov fractals are mathematical objects living in the plane, graphing regions of stability or chaos regarding a certain logistical map following an ever-changing population growth, alternating between two values. I implemented a Lyapunov fractal viewer in Java 1.8 which lets you freely move around the plane, set sequences and iteration depths to explore the fractal. Source code can be seen below or downloaded, as can the Java executable (Lyapunov.java, Lyapunov.jar).

lyapunov-fractal_3840x2160_N100_Zre3.0_Zim3.7_Zom0.3_Seqaaaaaabbbbbb_zircon-zity.png
Zircon Zity

Articles on the topic of Lyapunov fractals are a post by Earl Glynn [1] from the year 2000 in which they talk about their Lyapunov fractal generator written in Pascal — a rewrite of a software written in 1992. Also worth reading is A. Dewdney’s article about Mario Markus’ work (Scientific American, September 1991).

My first encounter with this fractal was whilst browsing Wikipedia and stumbling across its Wikipedia entry. Since it was a fractal and looked fairly intricate and thus explorable, I set out to write my own renderer — I chose to implement it in Java, as it is a compiled language with a nice set of GUI libraries. Since Wikipedia listed an algorithm for generating Lyapunov fractal images, I thought an implementation would be fairly straight-forward. However, als always, the devil is in the detail and I quickly noticed that while the short Wikipedia entry looks convincing and well-written at first glance, lacks to answer deeper questions regarding the very topic it is about.

lyapunov-fractal_3840x2160_N100_Zre2.294143894223694_Zim3.4124391882630345_Zom0.45724737082761846_Seqabbabbb_eerie-tendrils.png
Eerie Tendrils

The following is a description of the fractal generation algorithm. It is a modified version of the algorithm detailed by Wikipedia which addresses certain ambiguities the original had (more on those later).

Fractal generation algorithm

  • Take as input a complex point (a,b)\in\mathbb{R}^2 and a sequence S^* consisting of the letters \text{A} and \text{B}; for example S^*=\text{AAAAAABBBBBB}.
  • Construct a function S\colon\mathbb{N}_0\to\{\text{A},\text{B}\},\quad n\mapsto S^*_{(n\mod |S^*|)} which returns the zero indexed 𝑛-th sequence entry and wraps around to the sequence’s start once the sequence’s end is hit.
  • Construct a function
    r\colon\mathbb{N}_0\to\{a,b\},\quad n\mapsto\begin{cases}a&\text{if }S(n)=\text{A}\\b&\text{if }S(n)=\text{B}\end{cases}
    which selects either 𝑎 or 𝑏.
  • Let x_0=0.5 and define x_n=r(n-1)\cdot x_{n-1}\cdot (1-x_{n-1}).
  • Calculate the Lyapunov exponent 𝜆 as follows.
    \lambda = \lim\limits_{N \to \infty} \frac{1}{N} \cdot \sum\limits_{n=1}^{N} \log_2{|r(n)\cdot(1-2\cdot x_n)|}
    Since calculating the limit as 𝑁 goes to infinity is rather difficult in practice, one can simply use a sufficiently large 𝑁 and pretend to have reached infinity.
  • Output a color value according to 𝜆. I chose green for 𝜆 < 𝟢 and blue for 𝜆 ≥ 𝟢, using arbitrarily defined value ranges to map 𝜆 to an actual color.
lyapunov-fractal_3840x2160_N1000_Zre3.8362800000821116_Zim3.841203134481926_Zom0.026588814358957543_Seqaaaaaabbbbbb_a-spec-of-fractal.png
A Spec of Fractal

The following is a Java snippet which implements the algorithm described above.

// choose a or b according to Seq and n
static double r(String Seq, int n, double a, double b) {
    if (Seq.charAt(n%Seq.length()) == 'A') return a; else return b;
}
 
// calculate a pixel color (0x00rrggbb) for given parameters
static int LyapunovPixel(double a, double b, String Seq, int N) {
    // array of all x_n; x_0, the starting value, initialize all x_n values
    double[] X = new double[N+1]; X[0] = .5;
    for (int n = 1; n <= N; n++) X[n] = r(Seq,n-1,a,b)*X[n-1]*(1-X[n-1]);

    // calculate the Lyapunov exponent (to a certain precision dictated by N)
    double lmb = 0;
    for (int n = 1; n <= N; n++)
        lmb += Math.log(Math.abs(r(Seq,n,a,b)*(1-2*X[n])))/Math.log(2);
    lmb /= N;

    // infinity was hit, use a black pixel
    if (Double.isInfinite(lmb)) return 0x000000;

    // color pixel according to Lyapunov exponent
    double MIN = -1, MAX = 2;
    if (lmb < 0) return ((int)(lmb/MIN*255))<<8;
    else         return ((int)(lmb/MAX*255))<<0;
}
lyapunov-fractal_3840x2160_N100_Zre2.666666666666667_Zim3.0_Zom1.0_Seqab_lyapunov-spike.png
Lyapunov Spike

Coming back to Wikipedia’s algorithm, there were a few things I found irritating at best when attempting my implementation and thus addressed in the algorithm description seen above. A closer look at potentially misleading or ambiguos statements follows, together with my reasoning to resolve them.

  1. It is not clear whether the sequence is zero or one indexed, though it has to be zero indexed as x_0=0.5, x_{n+1}=r_n\cdot\dots evaluates to x_1=r_0\cdot\dots, implying the definition of r_0 and thus S_0.
  2. It is not clear which logarithm is meant; the natural logarithm, a generic \log_b or the dyadic logarithm — the latter is actually used. To find the actual logarithm base, I dug deeper and used Wikipedia’s external links to find a post by Earl Glynn [2], answering this question.
  3. It is not clear what is meant by the second half of the sentence beneath the Lyapunov exponent. It reads “… dropping the first summand as r_0(1-2x_0)=r_n\cdot 0=0 for x_0=0.5.” As the sum starts with 𝑛 = 𝟣 and one would not dare to calculate \log_2{|r(0)\cdot(1-2\cdot x_0)|}=\log_2{0} for x_0=0.5, this sentence’s existence bewilders me.
  4. It is not clear how exactly the colors are derived, only that they have something to do with the Lyapunov exponent. I simply chose arbitrary values that looked convincing for mapping 𝜆 to a pixel color.
lyapunov-fractal_3840x2160_N100_Zre3.015244151652456_Zim3.692602005918367_Zom0.05559060566555525_Seqaaaaaabbbbbb_dark-swirl.png
Dark Swirl

One of the most frustrating bugs I came across was an unexplainable axis flip. My code generated the fractal just fine except for the fact that every image was flipped along the diagonal crossing the origin with a 𝟦𝟧° angle to the horizontal. It was as though the coordinates (a,b) were swapped somewhere in my code and I simply could not figure out where.
Finally, after hours of looking at the same code over and over again, a closer look at Earl Glynn’s post [3] brought an end to my misery. Just below the three welcoming fractal renderings, a screenshot of their software is shown — complete with a blue and red line indicating the coordinate system’s orientation. 𝑎 and 𝑏 are — contrary to all coordinate systems involving parameters named after the first two letters in the latin alphabet — indeed flipped. Wikipedia’s images must have simply ran with this decision, without noting it.
Because of this flip, when one wants to render images specified in the reversed sequence format, they simply have to swap all letters (for example \text{BBBABA} becomes \text{AAABAB}).

As Glynn themself says, “I would have reversed the ‘a’ and ‘b’ labels to be consistent with normal ‘x’ and ‘y’ axes conventions, but conform here with the same convention as used by Markus.” (Referring to Mario Markus, co-author of Lyapunov Exponents of the Logistic Map with Periodic Forcing.)

lyapunov-fractal_3840x2160_N10_Zre-1.595906489339523_Zim-1.1504753527142757_Zom0.5233476330273611_Seqabbabbb_slurping-cell.png
Slurping Cell

After having eliminated all vagueness regarding the fractal generation, writing the outer Java viewer hull was a fairly easy task. As a template I took my Mandelbrot Set III viewer (the reason why most variable names reference complex numbers) complete with multithreading, allowing a pixely fractal exploration until one stops their exploration, letting the thread catch up and display a higher resolution image. The same is done for rendering 𝟦K images and saving them to files in the background — 𝟦K renderings are saved as .png files and named according to their parameters. A list of program controls follows.

Controls

  • Mouse dragging lets one pan the complex plane.
  • Mouse scrolling lets one zoom the complex plane.
  • Pressing N evokes a dialogue box where one can specify an iteration depth 𝑁.
  • Pressing S evokes a dialogue box where one can enter a sequence S^*.
  • Pressing R resets all fractal parameters to the default.
  • Pressing P initiates a 𝟦K fractal rendering. The 𝟦K fractal rendering thread can be killed by exiting the program prematurely, thus losing (!) the rendering.
Source code: Lyapunov.java

Footnotes

  1. [2020-08-07] As Wikipedia did, I will link to the archive as the original page appears to be down.
  2. [2020-08-07] See footnote 1.
  3. [2020-08-07] See footnote 1.
Jonathan Frech's blog; built 2024/03/18 18:45:40 CET