Sequence Fractals Part II #42

$ z^2+c+s_i$
si = a,-a,…; a = -0.05
Center: 0; Zoom = 0.3

The big finale, when all the plot points come together (pun intended). Surely you have seen this coming and were eager to get to this point.

Here is the list of named points for this function, a = -0.05, and for the Mandelbrot set. The => symbol points to the equivalent point in the MSet. The first set looks at the usual two-step function, quartic polynomial. When we get to a=0, the two steps are the same, the good old z2+c. (Picture not included, but you may have seen it elsewhere.) The Mandelbrot numbers are based on the normal single step, so the cycle numbers may double when comparing the two.

Named Points for a=(-0.050000, 0.000000)
  2 fixed points
C1.00:  -0.837298,  0.000000 => C2.00
C1.01:  -0.062702,  0.000000 => C1.00
  6 two cycles
C2.00:  -1.846047,  0.000000 => C4.00
C2.01:  -1.210164,  0.000000 => C4.01
C2.02:  -0.107257,  1.085808 => C4.02
C2.03:  -0.107257, -1.085808 => C4.03
C2.04:   0.285362,  0.540972 => C4.04
C2.05:   0.285362, -0.540972 => C4.05
  4 1/1 preperiodic points
M1,1.00:  -1.909295,  0.000000 => M2,1.00
M1,1.01:   0.031926,  1.058185 => M2,2.00
M1,1.02:   0.031926, -1.058185 => M2,2.01
M1,1.03:   0.045443,  0.000000 => C1.00

Named Points for Mandelbrot set
  1 fixed points
C1.00:   0.000000,  0.000000
  1 two cycles
C2.00:  -1.000000,  0.000000
  3 three cycles
C3.00:  -1.754878,  0.000000
C3.01:  -0.122561,  0.744862
C3.02:  -0.122561, -0.744862
  1 2/1 preperiodic points
M2,1.00:  -2.000000,  0.000000
  2 2/2 preperiodic point
M2,2.00:   0.000000,  1.000000
M2,2.01:   0.000000, -1.000000
  6 four cycles
C4.00:  -1.940800,  0.000000
C4.01:  -1.310702,  0.000000
C4.02:  -0.156520,  1.032247
C4.03:  -0.156520, -1.032247
C4.04:   0.282271,  0.530061
C4.05:   0.282271, -0.530061

Note that M1,1.03 in this list is M1,1.01 in all the previous lists.

tl;dr: Feel free to skip the rest.

Over explaining the naming convention: These named points are a single snapshot for a particular formula / parameter pair. In each list, the names are arbitrarily assigned by left to right (< real) order. In this sense there is no connection between one set of values and another for a different value of a. However the super function, considering all parameters as variables f(z,c,a) is just a polynomial and so continuous in all variables. That makes the set of named points a continuous function of the parameter a, and so it makes sense to track how these points evolve individually as a changes, as we have been doing all along.

Sometime since the last C/M list, the M1,01 point, on the real axis, moved to right of the former M1,1.02 and M1,1.03. Hence that name change.

There are many naming conventions for the special points in the Mandelbrot set. For example, here is a comprehensive system developed by Robert P. Munafo href=http://www.mrob.com/pub/muency/r2namingsystem.html. I do not know of any naming system for the general quartic case. To keep things simple, I have chosen a less precise but much simpler convention.