Fractals/Iterations in the complex plane/def cqp

< Fractals < Iterations in the complex plane

Definitions


Address

Internal

Internal addresses describe the combinatorial structure of the Mandelbrot set.[1]

Internal address :

angled

Angled internal address is an extension of internal address

Angle

Types of angle

Principal branch or complex number argument
external angle internal angle plain angle
parameter plane
dynamic plane

where :

external

The external angle is a angle of point of set's exterior. It is the same on all points on the external ray

internal

The internal angle[3] is an angle of point of component's interior

plain

The plain angle is an agle of complex point = it's argument [4]

Units

Number types

Angle ( for example external angle in turns ) can be used in different number types

Examples :

the external arguments of the rays landing at z = −0.15255 + 1.03294i are :[5]

where :

Bifurcation

Coordinate

Coordinate :

Curves

Types:

Description[7]


closed

Closed curves are curves whose ends are joined. Closed curves do not have end points.


"non-self-intersecting continuous closed curve in plane" = "image of a continuous injective function from the circle to the plane"

Circle

Unit circle

Unit circle is a boundary of unit disk[9]

where coordinates of point of unit circle in exponential form are :

Critical curves

Diagrams of critical polynomials are called critical curves.[10]

These curves create skeleton of bifurcation diagram.[11] (the dark lines[12])

Escape lines

"If the escape radius is equal to 2 the contour lines have a contact point (c= -2) and cannot be considered as equipotential lines" [13]

Invariant

Types:

examples :

Isocurves

Equipotential lines

Equipotential lines = Isocurves of complex potential

"If the escape radius is greater than 2 the contour lines are equipotential lines" [18]

Jordan curve

Illustration of the Jordan curve theorem. The Jordan curve (drawn in black) divides the plane into an "inside" region (light blue) and an "outside" region (pink).

Jordan curve = a simple closed curve that divides the plane into an "interior" region bounded by the curve and an "exterior" region containing all of the nearby and far away exterior points[19]

Lamination

Lamination of the unit disk is a closed collection of chords in the unit disc, which can intersect only in an endpoint of each on the boundary circle[20][21]

It is a model of Mandelbrot or Julia set.


A lamination, L, is a union of leaves and the unit circle which satisfies :[22]

Leaf

Chords = leaves = arcs

A leaf on the unit disc is a path connecting two points on the unit circle. [23]


Open curve

Curve which is not closed. Examples : line, ray.

Ray

Rays are :

Internal ray

Dynamic internal ( blue segment) and external ( red ray) rays

Internal rays are :

Spider

A spider S is a collection of disjoint simple curves called legs [24]( extended rays = external + internal ray) in the complex plane connecting each of the post-critical points to infnity [25]

See :

Vein

"A vein in the Mandelbrot set is a continuous, injective arc inside in the Mandelbrot set"

"The principal vein is the vein joining to the main cardioid" (Entropy, dimension and combinatorial moduli for one-dimensional dynamical systems. A dissertation by Giulio Tiozzo )

Discretization

discretization[26] and its reverse [27]

Dynamics


symbolic

"Symbolic dynamics encodes :

equation

differential

differential equations

Function


Derivative

Derivative of Iterated function (map)

Derivative with respect to c

On parameter plane :

This derivative can be found by iteration starting with



and then

This can be verified by using the chain rule for the derivative.


dcfn(p, z, c) :=
  if p=0 then 1
  else 2*fn(p-1,z,c)*dcfn(p-1, z, c)+1;


Example values :

Derivative with respect to z

is first derivative with respect to c.


This derivative can be found by iteration starting with

and then :

Germ

Germ [31] of the function f in the neighborhood of point z is a set of the functions g which are indistinguishable in that neighborhood

See :


map

is called map  :

types

Polynomial

Critical

Critical polynomial :

so

These polynomials are used for finding :

post-critically finite

a post-critically finite polynomial = all critical points have finite orbit

Resurgent

"resurgent functions display at each of their singular points a behaviour closely related to their behaviour at the origin. Loosely speaking, these functions resurrect, or surge up - in a slightly different guise, as it were - at their singularities"

J. Écalle, 1980[36]

glitches


glitches = Incorrect parts of renders[37] using perturbation techique


Invariants

sth is invariant with respect to the transformation = non modified, steady


Topological methods for the analysis of dynamical systems

Invariants type

dynamical

Dynamical invariants = invariants of the dynamical system


Dynamical Invariants Derived from Recurrence Plots[38]

Interval

a partition of an interval into subintervals

Iteration

Iteration

Itinerary

is an itinerary of point x under the map f relative to the paritirtion.

It is a right-infinite sequence of zeros and ones [40]

 

where

Examples :

For rotation map and invariant interval ( circle ) :

one can compute  :

 


and split interval into 2 subintervals ( lower circle paritition):




then compute s according to it's relation with critical point :


Itinerary can be converted[41] to point

Magnitude

magnitude of the point ( complex number in 2D case) = it's distance from the origin

Map

description


types

Complex quadratic map

Forms

c form :

quadratic map[43]

f(z,c):=z*z+c;
(%i1) z:zx+zy*%i;
(%o1) %i*zy+zx
(%i2) c:cx+cy*%i;
(%o2) %i*cy+cx
(%i3) f:z^2+c;
(%o3) (%i*zy+zx)^2+%i*cy+cx
(%i4) realpart(f);
(%o4) -zy^2+zx^2+cx
(%i5) imagpart(f);
(%o5) 2*zx*zy+cy

Iterated quadratic map


...

or with subscripts :

fn(p, z, c) :=
  if p=0 then z
  elseif p=1 then f(z,c)
  else f(fn(p-1, z, c),c);
zp:fn(p, z, c);
lambda form :

More description Maxima CAS code ( here m not lambda is used )  :

(%i2) z:zx+zy*%i;
(%o2) %i*zy+zx
(%i3) m:mx+my*%i;
(%o3) %i*my+mx
(%i4) f:m*z+z^2;
(%o4) (%i*zy+zx)^2+(%i*my+mx)*(%i*zy+zx)
(%i5) realpart(f);
(%o5) -zy^2-my*zy+zx^2+mx*zx
(%i6) imagpart(f);
(%o6) 2*zx*zy+mx*zy+my*zx
Switching between forms

Start from :

Multiplier of fixed point :


When one wants change from lambda to c :[44]

or from c to lambda :

Example values :

r c fixed point alfa fixed point
1/1 1.0 0.25 0.5 1.0 0
1/2 1.0 -0.75 -0.5 -1.0 0
1/3 1.0 0.64951905283833*i-0.125 0.43301270189222*i-0.25 0.86602540378444*i-0.5 0
1/4 1.0 0.5*i+0.25 0.5*i i 0
1/5 1.0 0.32858194507446*i+0.35676274578121 0.47552825814758*i+0.15450849718747 0.95105651629515*i+0.30901699437495 0
1/6 1.0 0.21650635094611*i+0.375 0.43301270189222*i+0.25 0.86602540378444*i+0.5 0
1/7 1.0 0.14718376318856*i+0.36737513441845 0.39091574123401*i+0.31174490092937 0.78183148246803*i+0.62348980185873 0
1/8 1.0 0.10355339059327*i+0.35355339059327 0.35355339059327*i+0.35355339059327 0.70710678118655*i+0.70710678118655 0
1/9 1.0 0.075191866590218*i+0.33961017714276 0.32139380484327*i+0.38302222155949 0.64278760968654*i+0.76604444311898 0
1/10 1.0 0.056128497072448*i+0.32725424859374 0.29389262614624*i+0.40450849718747 0.58778525229247*i+0.80901699437495

One can easily compute parameter c as a point c inside main cardioid of Mandelbrot set :

of period 1 hyperbolic component ( main cardioid) for given internal angle ( rotation number) t using this c / cpp code by Wolf Jung[45]

double InternalAngleInTurns;
double InternalRadius;
double t = InternalAngleInTurns *2*M_PI; // from turns to radians
double R2 = InternalRadius * InternalRadius;
double Cx, Cy; /* C = Cx+Cy*i */
// main cardioid
Cx = (cos(t)*InternalRadius)/2-(cos(2*t)*R2)/4; 
Cy = (sin(t)*InternalRadius)/2-(sin(2*t)*R2)/4; 

or this Maxima CAS code :

 
/* conformal map  from circle to cardioid ( boundary
 of period 1 component of Mandelbrot set */
F(w):=w/2-w*w/4;

/* 
circle D={w:abs(w)=1 } where w=l(t,r) 
t is angle in turns ; 1 turn = 360 degree = 2*Pi radians 
r is a radius 
*/
ToCircle(t,r):=r*%e^(%i*t*2*%pi);

GiveC(angle,radius):=
(
 [w],
 /* point of  unit circle   w:l(internalAngle,internalRadius); */
 w:ToCircle(angle,radius),  /* point of circle */
 float(rectform(F(w)))    /* point on boundary of period 1 component of Mandelbrot set */
)$

compile(all)$

/* ---------- global constants & var ---------------------------*/
Numerator :1;
DenominatorMax :10;
InternalRadius:1;

/* --------- main -------------- */
for Denominator:1 thru DenominatorMax step 1 do
(
 InternalAngle: Numerator/Denominator,
 c: GiveC(InternalAngle,InternalRadius),
 display(Denominator),
 display(c),
  /* compute fixed point */
 alfa:float(rectform((1-sqrt(1-4*c))/2)), /* alfa fixed point */
 display(alfa)
 )$


Circle map

Circle map [46]

Doubling map

definition [48]


C function ( using GMP library) :

// rop = (2*op ) mod 1 
void mpq_doubling(mpq_t rop, const mpq_t op)
{
  mpz_t n; // numerator
  mpz_t d; // denominator
  mpz_inits(n, d, NULL);

 
  //  
  mpq_get_num (n, op); // 
  mpq_get_den (d, op); 
 
  // n = (n * 2 ) % d
  mpz_mul_ui(n, n, 2); 
  mpz_mod( n, n, d);
  
      
  // output
  mpq_set_num(rop, n);
  mpq_set_den(rop, d);
    
  mpz_clears(n, d, NULL);


}
doubling_map(n,d):=mod(2*n,d)/d $

or using rational number as an input

DoublingMap(r):=
  block([d,n],
        n:ratnumer(r),
        d:ratdenom(r),
        mod(2*n,d)/d)$


(defun doubling-map (ratio-angle)
" period doubling map =  The dyadic transformation (also known as the dyadic map, 
 bit shift map, 2x mod 1 map, Bernoulli map, doubling map or sawtooth map "
(let* ((n (numerator ratio-angle))
       (d (denominator ratio-angle)))
  (setq n  (mod (* n 2) d)) ; (2 * n) modulo d
  (/ n d))) ; result  = n/d
-- by Claude Heiland-Allen
-- type Q = Rational
 double :: Q -> Q
 double p
   | q >= 1 = q - 1
   | otherwise = q
   where q = 2 * p
//  mndcombi.cpp  by Wolf Jung (C) 2010. 
//   http://mndynamics.com/indexp.html 
// n is a numerator
// d is a denominator
// f = n/d is a rational fraction ( angle in turns )
// twice is doubling map = (2*f) mod 1
// n and d are changed ( Arguments passed to function by reference)

void twice(unsigned long long int &n, unsigned long long int &d)
{  if (n >= d) return;
   if (!(d & 1)) { d >>= 1; if (n >= d) n -= d; return; }
   unsigned long long int large = 1LL; 
   large <<= 63; //avoid overflow:
   if (n < large) { n <<= 1; if (n >= d) n -= d; return; }
   n -= large; 
   n <<= 1; 
   large -= (d - large); 
   n += large;
}

Inverse function of doubling map

Every angle α ∈ R/Z measured in turns has :

In Maxima CAS :

InvDoublingMap(r):= [r/2, (r+1)/2];

Note that difference between these 2 preimages

is half a turn = 180 degrees = Pi radians.

Images and preimages under doubling map d

Feigenbaum map

"the Feigenbaum map F is a solution of Cvitanovic-Feigenbaum equation"[51]

First return map

definition [52]

"In contrast to a phase portrait, the return map is a discrete description of the underlying dynamics. .... A return map (plot) is generated by plotting one return value of the time series against the previous one "[53]

"If x is a periodic point of period p for f and U is a neighborhood of x, the composition maps U to another neighborhood V of x. This locally defined map is the return map for x." ( W P Thurston : On the geometry and dynamics of Iterated rational maps)

"The first return map S → S is the map defined by sending each x0 ∈ S to the point of S where the orbit of x0 under the system first returns to S." [54]

"way to obtain a discrete time system from a continuous time system, called the method of Poincar´e sections Poincar´e sections take us from : continuous time dynamical systems on (n + 1)-dimensional spaces to discrete time dynamical systems on n-dimensional spaces"[55]

Multiplier map

Multiplier map gives an explicit uniformization of hyperbolic component by the unit disk  :

Multiplier map is a conformal isomorphism.[56]

Rotation map

Rotation map describes counterclockwise rotation of point thru turns on the unit circle :

 

It is used for computing :

Shift map

names :


Shift map (one-sided binary left shift ) acts on one-sided infinite sequence of binary numbers by

 


It just drops first digit of the sequence.

  
  


If we treat sequence as a binary fraction :

 

then shift map = the dyadic transformation = dyadic map = bit shift map= 2x  mod 1 map = Bernoulli map = doubling map = sawtooth map

 

and "shifting N places left is the same as multiplying by 2 to the power N (written as 2N)"[57] ( operator << )


See also:

Multiplier

Multiplier of periodic z-point : [58]

Math notation :

Maxima CAS function for computing multiplier of periodic cycle :

m(p):=diff(fn(p,z,c),z,1);

where p is a period. It takes period as an input, not z point.

period
1
2
3

It is used to :

Number

Rotation number

The rotation number[59][60][61][62][63] of the disk ( component) attached to the main cardioid of the Mandelbrot set is a proper, positive rational number p/q in lowest terms where :

Features :

Winding number

def[65]

Orbit

Orbit is a sequence of points = trajectory

Critical

Forward orbit[66] of a critical point[67][68] is called a critical orbit. Critical orbits are very important because every attracting periodic orbit[69] attracts a critical point, so studying the critical orbits helps us understand the dynamics in the Fatou set.[70][71] [72]

This orbit falls into an attracting periodic cycle.


Code :

"https://github.com/conanite/rainbow/blob/master/src/arc/rainbow/spiral.arc
 This software is copyright (c) Conan Dalton 2008. Permission to use it is granted under the Perl Foundations's Artistic License 2.0.
 This software includes software that is copyright (c) Paul Graham and Robert Morris, distributed under the Perl Foundations's Artistic License 2.0.
 This software uses javacc which is copyright (c) its authors
"
(def plot (plt c)
  (with (z 0+0i
         n 0
         repeats 0)
    (while (and (small z) (< n 10000) (< repeats 1000))
      (assign n       (+ n 1)
              z       (+ c (* z z))
              repeats (if (apply plt (complex-parts z))
                          (+ repeats 1)
                          0)))))

Here are images:

Forward


Homoclinic / heteroclinic

Inverse

Inverse = Backward

Parameter

Parameter

Paritition

Period


The smallest positive integer value p for which this equality

holds is the period[76] of the orbit.[77]

is a point of periodic orbit ( limit cycle ) .


More is here

Perturbation

Plane

Planes [80]

Douady’s principle : “sow in dynamical plane and reap in parameter space”.

Dynamic plane

Parameter plane

See :[81]

Types of the parameter plane :

Points

Band-merging

the band-merging points are Misiurewicz points[88]

Biaccessible

If there exist two distinct external rays landing at point we say that it is a biaccessible point. [89]

Center

Nucleus or center of hyperbolic component

A center of a hyperbolic component H is a parameter ( or point of parameter plane ) such that the corresponding periodic orbit has multiplier= 0." [90]

Synonyms :

How to find center/s ?

Center of Siegel Disc

Center of Siegel disc is a irrationally indifferent periodic point.

Mane's theorem :

"... appart from its center, a Siegel disk cannot contain any periodic point, critical point, nor any iterated preimage of a critical or periodic point. On the other hand it can contain an iterated image of a critical point." [92]

Critical

A critical point[93] of is a point in the dynamical plane such that the derivative vanishes:

Since

implies

we see that the only (finite) critical point of is the point .

is an initial point for Mandelbrot set iteration.[94]

Cut

The "neck" of this eight-like figure is a cut-point.
Cut points in the San Marco Basilica Julia set. Biaccessible points = landing points for 2 external rays

Cut point k of set S is a point for which set S-k is dissconected ( consist of 2 or more sets).[95] This name is used in a topology.

Examples :

These points are landing points of 2 or more external rays.

Point which is a landing point of 2 external rays is called biaccesible


Cut ray is a ray which converges to landing point of another ray. [96] Cut rays can be used to construct puzzles.

Cut angle is an angle of cut ray.

fixed

Periodic point when period = 1

Feigenbaum

Self similarity in the Mandelbrot set shown by zooming in on a round feature while panning in the negative-x direction. The display center pans from (1, 0) to (1.31, 0) while the view magnifies from 0.5 × 0.5 to 0.12 × 0.12 to approximate the Feigenbaum ratio.

The Feigenbaum Point[97] is a :

Generalized Feigenbaum points are :

Examples :

The Mandelbrot set is conjectured to be self- similar around generalized Feigenbaum points[99] when the magnification increases by 4.6692 (the Feigenbaum Constant) and period is doubled each time[100]

n Period = 2^n Bifurcation parameter = cn Ratio
1 2 -0.75 N/A
2 4 -1.25 N/A
3 8 -1.3680989 4.2337
4 16 -1.3940462 4.5515
5 32 -1.3996312 4.6458
6 64 -1.4008287 4.6639
7 128 -1.4010853 4.6682
8 256 -1.4011402 4.6689
9 512 -1.401151982029
10 1024 -1.401154502237
infinity -1.4011551890 ...

Bifurcation parameter is a root point of period = 2^n component. This series converges to the Feigenbaum point c = −1.401155

The ratio in the last column converges to the first Feigenbaum constant.


" a "Feigenbaum point" (an infinitely renormalizable parameter of bounded type, such as the famous Feigenbaum value which is the limit of the period-2 cascade of bifurcations), then Milnor's hairiness conjecture, proved by Lyubich, states that rescalings of the Mandelbrot set converge to the entire complex plane. So there is certainly a lot of thickness near such a point, although again this may not be what you are looking for. It may also prove computationally intensive to produce accurate pictures near such points, because the usual algorithms will end up doing the maximum number of iterations for almost all points in the picture." Lasse Rempe-Gillen[101]

infinity

The point at infinity [102]" is a superattracting fixed point, but more importantly its immediate basin of attraction - that is, the component of the basin containing the fixed point itself - is completely invariant (invariant under forward and backwards iteration). This is the case for all polynomials (of degree at least two), and is one of the reasons that studying polynomials is easier than studying general rational maps (where e.g. the Julia set - where the dynamics is chaotic - may in fact be the whole Riemann sphere). The basin of infinity supports foliations into "external rays" and "equipotentials", and this allows one to study the Julia set. This idea was introduced by Douady and Hubbard, and is the basis of the famous "Yoccoz puzzle"." Lasse Rempe-Gillen[103]

Misiurewicz

Misiurewicz point[104] = " parameters where the critical orbit is pre-periodic.

Examples are:

Characteristic Misiurewicz pointof the chaotic band of the Mandelbrot set is :[107]

Myrberg-Feigenbaum

MF = the Myrberg-Feigenbaum point is the different name for the Feigenbaum Point.

Parabolic point

parabolic points : this occurs when two singular points coallesce in a double singular point (parabolic point)[108]

Periodic

Point z has period p under f if :

Pinching

"Pinching points are found as the common landing points of external rays, with exactly one ray landing between two consecutive branches. They are used to cut M or K into well-defined components, and to build topological models for these sets in a combinatorial way. " ( definition from Wolf Jung program Mandel )

See for examples :

post-critical

A post-critical point is a point

where is a critical point. [110]

precritical

precritical points, i.e., the preimages of 0

root

The root point :

singular

the singular points of a dynamical system

In complex analysis there are four classes of singularities:

Portrait

orbit portrait

types

There are two types of orbit portraits: primitive and satellite. [111]If is the valence of an orbit portrait and is the recurrent ray period, then these two types may be characterized as follows:

Processes and phenomenona

Contraction and dilatation

Implosion and explosion

Explosion (above) and implosion ( below)

Implosion is :

Example : parabolic implosion in complex dynamics, when filled Julia for complex quadratic polynomial set looses all its interior ( when c goes from 0 along internal ray 0 thru parabolic point c=1/4 and along extrnal ray 0 = when c goes from interior , crosses the bounday to the exterior of Mandelbrot set)[112]


Explosion is a :

Example : in exponential dynamics when λ> 1/e , the Julia set of is the entire plane.[113]

Tuning

Radius

Conformal radius

Conformal radius of Siegel Disk [115][116]

Escape radius ( ER)

Escape radius ( ER ) or bailout value is a radius of circle target set used in bailout test

Minimal Escape Radius should be grater or equal to 2 :

Better estimation is :[117][118]


Inner radius

Inner radius of Siegel Disc

Internal radius

Internal radius is a:

Sequences

A sequence is an ordered list of objects (or events).[119]

A series is the sum of the terms of a sequence of numbers.[120] Some times these names are not used as in above definitions.


Orbit

Orbit can be:

Set

Continuum

definition[121]

Component

Components of parameter plane

mu-atom , ball, bud, bulb, decoration, lake and lakelet.[122]

Islands

Names :

List of islands :

Primary and satellite

"Hyperbolic components come in two kinds, primitive and satellite, depending on the local properties of their roots." [124]

Child (Descendant ) and the parent

def [125]

Hyperbolic component of Mandelbrot set

Boundaries of hyperbolic components of Mandelbrot set

Domain is an open connected subset of a complex plane.

"A hyperbolic component H of Mandelbrot set is a maximal domain (of parameter plane) on which has an attracting periodic orbit.

A center of a H is a parameter ( or point of parameter plane ) such that the corresponding periodic orbit has multiplier= 0." [126]

A hyperbolic component is narrow if it contains no component of equal or lesser period in its wake [127]

features of hyperbolic component

Limb

13/34 limb and wake on the left image

p/q limb is a part of Mandelbrot set contained inside p/q wake

Wake

Wakes of Mandelbrot Set to Period 10

Wake is the region of parameter plane enclosed by two external rays landing on the same root point on the boundary of main cardioid ( period 1 hyperbolic component).

Angles of the external rays that land on the root point one can find by :

Components of dynamical plane

In case of Siegel disc critical orbit is a boundary of component containing Siegel Disc.

Domain

Domain in mathematical analysis it is an open connected set

Jordan domain

"A Jordan domain[128] J is the the homeomorphic image of a closed disk in E2. The image of the boundary circle is a Jordan curve, which by the Jordan Curve Theorem separates the plane into two open domains, one bounded, the other not, such that the curve is the boundary of each." [129]

Dwell bands

"Dwell bands are regions where the integer iteration count is constant, when the iteration count decreases (increases) by 1 then you have passed a dwell band going outwards (inwards). " [130] Other names:

Flower

Lea-Fatu flower

Invariant

"A subset S of the domain Ω is an invariant set for the system (7.1) if the orbit through a point of S remains in S for all t ∈ R. If the orbit remains in S for t > 0, then S will be said to be positively invariant. Related definitions of sets that are negatively invariant, or locally invariant, can easily be given" [131]

Examples :

Level set

Planar set

a non-separating planar set is a set whose complement in the plane is connected.[133]

Sepal

Sepal

Target set

How target set is changing along internal ray 0

Elliptic case

Target set in elliptic case = inner circle

For the elliptic dynamics, when there is a Siegel disc, the target set is an inner circle

Hyperbolic case

Infinity is allways hyperbolic attractor for forward iteration of polynomials. Target set here is an exterior of any shape containing all point of Julia set ( and it's interior). There are also other hyperbolic attractors.


In case of forward iteration target set is an arbitrary set on dynamical plane containing infinity and not containing points of filled Julia set.

For escape time algorithms target set determines the shape of level sets and curves. It does not do it for other methods.

Exterior of circle

This is typical target set. It is exterior of circle with center at origin and radius =ER :

Radius is named escape radius ( ER ) or bailout value.

Circle of radius=ER centered at the origin is :

Exterior of square

Here target set is exterior of square of side length centered at origin

Parabolic case : petal

trap in parabolic case

In the parabolic case target set shoul be iside petal

Trap

Trap is an another name of the target set. It is a set which captures any orbit tending to point inside the trap ( fixed / periodic point ).

Surgery


Links:

Test

Bailout test or escaping test

Two sets after bailout test: escaping white and non-escaping black
Distance to fixed point for various types of dynamics

It is used to check if point z on dynamical plane is escaping to infinity or not.[135] It allows to find 2 sets :

In practice for given IterationMax and Escape Radius :


If is in the target set then is escaping to infinity ( bailouts ) after n forward iterations ( steps).[137]

The output of test can be :

Tree

Farey tree

Farey tree = Farey sequence as a tree

Hubbard tree

"Hubbard trees are finite planar trees, equipped with self-maps, which classify postcritically finite polynomials as holomorphic dynamical systems on the complex plane." [138]

References

  1. Rational Maps with Clustering and the Mating of Polynomials by Thomas Joseph Sharland
  2. Topics from One-Dimensional Dynamics by Karen M. Brucks,Henk Bruin. page 265 exercise 14.2.12
  3. muency - internal angle ( the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2016. )
  4. argument of complex number
  5. A Method to Solve the Limitations in Drawing External Rays of the Mandelbrot Set M. Romera, G. Pastor, A. B. Orue, A. Martin, M.-F. Danca, and F. Montoya
  6. Matcont - is a Matlab software project for the numerical continuation and bifurcation study of continuous and discrete parameterized dynamical systems. Leaders of the project are Willy Govaerts (Gent,B) and Yuri A. Kuznetsov (Utrecht,NL).
  7. geometry by Dr. Carol JVF Burns
  8. What is a Curve ?
  9. Unit circle in wikipedia
  10. The Road to Chaos is Filled with Polynomial Curves by Richard D. Neidinger and R. John Annen III. American Mathematical Monthly, Vol. 103, No. 8, October 1996, pp. 640-653
  11. Hao, Bailin (1989). Elementary Symbolic Dynamics and Chaos in Dissipative Systems. World Scientific. ISBN 9971-5-0682-3. http://power.itp.ac.cn/~hao/.
  12. M. Romera, G. Pastor and F. Montoya, "Misiurewicz points in one-dimensional quadratic maps", Physica A, 232 (1996), 517-535. Preprint
  13. Escape lines versus equipotential lines in the Mnadelbrot set by M. Romera, Pastor G , D. de la Guía, Montoya
  14. The Computation of Invariant Circles of Maps Article in Physica D Nonlinear Phenomena 16(2):243-251 · June 1985 DOI: 10.1016/0167-2789(85)90061-2 1st I.G. Kevrekidis
  15. A Newton-Raphson method for numerically constructing invariant curves Marty, Wolfgang
  16. Numerical Approximation of Rough Invariant Curves of Planar Maps Article in SIAM Journal on Scientific Computing 25(1) · September 2003 DOI: 10.1137/S106482750241373X K. D. Edoh and Jens Lorenz
  17. SIAM J. Sci. and Stat. Comput., 8(6), 951–962. (12 pages) A New Algorithm for the Numerical Approximation of an Invariant Curve Published online: 14 July 2006 Keywords invariant manifold, polygonal approximation AMS Subject Headings 65L99, 65H10, 34C40 Publication Data ISSN (print): 0196-5204 ISSN (online): 2168-3417 Publisher: Society for Industrial and Applied Mathematics M. van Veldhuizen
  18. Escape lines versus equipotential lines in the Mnadelbrot set by M. Romera, Pastor G , D. de la Guía, Montoya
  19. wikipedia : Jordan curve theorem
  20. Modeling Julia Sets with Laminations: An Alternative Definition by Debra Mimbs
  21. Laminations of the unit disk with irrational rotation gaps by John C. Mayer
  22. Rational maps represented by both rabbit and aeroplane matings Thesis submitted in accordance with the requirements of the University of Liverpool for the degree of Doctor in Philosophy by Freddie R. Exall July 2010
  23. Rational maps represented by both rabbit and aeroplane matings Thesis submitted in accordance with the requirements of the University of Liverpool for the degree of Doctor in Philosophy by Freddie R. Exall July 2010
  24. Iterated Monodromy Groups of Quadratic Polynomials, I Laurent Bartholdi, Volodymyr V. Nekrashevych
  25. GROWTH OF GROUPS DEFINED BY AUTOMATA : ASHLEY S. DOUGHERTY, LYDIA R. KINDELIN, AARON M. REAVES, ANDREW J. WALKER, AND NATHANIEL F. ZAKAHI
  26. wikipedia : discretization
  27. mathinsight : from_discrete_to_continuous_dynamical_systems
  28. Symbolic Dynamics of Quadratic Polynomials by H. Bruin and D. Schleicher
  29. Symbolic Dynamics and Rotation Numbers J. J. P. Veerman Phys. 13A, 1986, 543-576.
  30. Symbolic Dynamics of Order-Preserving Orbits J. J. P. Veerman Phys. 29D, 1987, 191-201.
  31. Germ in wikipedia
  32. math.stackexchange question : is-there-any-difference-between-mapping-and-function
  33. Iterated function (map) in wikipedia
  34. evolution function
  35. the discrete nonlinear dynamical system
  36. A Beginners’ Guide to Resurgence and Trans-series in Quantum Theories Gerald Dunne
  37. dinkydauset at deviantar :Perturbation-for-the-Mandelbrot-set-450766847
  38. N. Marwan, M. C. Romano, M. Thiel, J. Kurths: Recurrence Plots for the Analysis of Complex Systems, Physics Reports, 438(5-6), 237-329, 2007.
  39. math.stackexchange question : definition-of-markov-partition
  40. Structure of Inverse Limit Spaces of Tent Maps with Nonrecurrent Critical Points by Brian Raines and Sonja Stimac
  41. Bifurcation structures in maps of Henon type by Kai T Hansen and Predrag Cvitanovic
  42. Hyperbolic Components by John Milnor
  43. Complex quadratic map in wikipedia
  44. Michael Yampolsky, Saeed Zakeri : Mating Siegel quadratic polynomials.
  45. Mandel: software for real and complex dynamics by Wolf Jung
  46. three-cool-facts-about-rotations-of-the-circle by David Richeson
  47. irrational-rotations-of-the-circle-and-benfords-law by David Richeson
  48. wikipedia : Dyadic transformation
  49. lavaurs' algorithm in Haskell with SVG output by Claude Heiland-Allen
  50. SYMBOLIC DYNAMICS AND SELF-SIMILAR GROUPS by VOLODYMYR NEKRASHEVYCH
  51. The measure of the Feigenbaum Julia set by Artem Dudko and Scott Sutherland
  52. Poincaré map
  53. General principles of chaotic dynamics by P.B. Persson , C.D. Wagner
  54. Continuous time and discrete time dynamical systems by Shaun Bullett
  55. Continuous time and discrete time dynamical systems by Shaun Bullett
  56. Conformal Geometry and Dynamics of Quadratic Polynomials Mikhail Lyubich
  57. binary_shift_left
  58. Multiplier at wikipedia
  59. wikipedia : Rotation number
  60. rotation number From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2016
  61. scholarpedia : Rotation_theory
  62. The Fractal Geometry of the Mandelbrot Set II. How to Count and How to Add Robert L. Devaney
  63. An Introduction to Rotation Theory Prize winner, DSWeb Student Competition, 2007 By Christian Kue
  64. Complex systems simulation Curso 2012-2013 by Antonio Giraldo and María Asunción Sastre
  65. https://plus.maths.org/content/winding-numbers-topography-and-topology-ii
  66. wikipedia : orbit (dynamics)
  67. Wikipedia : Complex quadratic polynomial - Critical point
  68. MandelOrbits - A visual real-time trace of Mandelbrot iterations by Ivan Freyman
  69. wikipedia : Periodic points of complex quadratic mappings
  70. M. Romera, G. Pastor, and F. Montoya : Multifurcations in nonhyperbolic fixed points of the Mandelbrot map. Fractalia 6, No. 21, 10-12 (1997)
  71. Burns A M : Plotting the Escape: An Animation of Parabolic Bifurcations in the Mandelbrot Set. Mathematics Magazine, Vol. 75, No. 2 (Apr., 2002), pp. 104-116
  72. Khan Academy : Mandelbrot Spirals 2
  73. Complex Power Towers (Or ‘mucking around with Mathematica’) by Mike Croucher
  74. /DarkHeart by Chris King
  75. Ouadratic-like maps and Renormalization by Nuria Fagella
  76. Peiod From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2015.
  77. scholarpedia : Periodic Orbit for a Map
  78. Perturbation for the Mandelbrot set by DinkydauSet, Apr 28, 2014, 3:46:13 PM
  79. PARABOLIC IMPLOSION A MINI-COURSE ARNAUD CHERITAT
  80. wikipedia : Complex_quadratic_polynomial - Planes
  81. Alternate Parameter Planes by David E. Joyce
  82. mu-ency : exponential map by R Munafo
  83. Exponential mapping and OpenMP by Claude Heiland-Allen
  84. Linas Vepstas : Self Similar?
  85. the flattened cardioid of a Mandelbrot by Tom Rathborne
  86. Stretching cusps by Claude Heiland-Allen
  87. Twisted Mandelbrot Sets by Eric C. Hill
  88. doubling bifurcations on complex plane by E Demidov
  89. On biaccessible points in the Julia set of the family z(a+z^{d}) by Mitsuhiko Imada
  90. Surgery in Complex Dynamics by Carsten Lunde Petersen, online paper
  91. Nucleus - From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2015.
  92. Siegel disks by Xavier Buff and Arnaud Ch ́ritat e Univ. Toulouse Roma, April 2009
  93. wikipedia : Critical point (mathematics)
  94. Java program by Dieter Röß showing result of changing initial point of Mandelbrot iterations
  95. Cut point in wikipedia
  96. On local connectivity for the Julia set of rational maps : Newton’s famous example By P. Roesch
  97. muency : feigenbaum point
  98. On Periodic and Chaotic Regions in the Mandelbrot Set by G. Pastor , M. Romera, G. Álvarez, D. Arroyo and F. Montoya
  99. fractal-faq : section 6
  100. Period doubling and Feigenbaum's scaling be E Demidov
  101. mathoverflow question : is-there-a-way-to-find-regions-of-depth-in-the-mandelbrot-set-other-than-simply?rq=1
  102. [w:Point at infinity|Point at infinity in wikipedia]
  103. Mathoverflow question : Attractive Basins and Loops in Julia Sets
  104. wikipedia : Misiurewicz point
  105. Symbolic sequences of one-dimensional quadratic map points by G Pastor, Miguel Romera, Fausto Montoya Vitini
  106. mathoverflow question : Is there a way to find regions of depth in the Mandelbrot set other than simply poking around?
  107. G. Pastor, M. Romera, G. Álvarez, D. Arroyo and F. Montoya, "On periodic and chaotic regions in the Mandelbrot set", Chaos, Solitons & Fractals, 32 (2007) 15-25
  108. The bifurcation diagram of cubic polynomial vector fields on CP1 by Christiane Rousseau
  109. http://www.mndynamics.com/indexp.html%7C program Mandel by Wolf Jung , demo 2 page 3
  110. GROWTH OF GROUPS DEFINED BY AUTOMATA : ASHLEY S. DOUGHERTY, LYDIA R. KINDELIN, AARON M. REAVES, ANDREW J. WALKER, AND NATHANIEL F. ZAKAHI
  111. wikipedia : Orbit portrait
  112. Airplane primitive parabolic implosion by Wolf Jung
  113. CANTOR BOUQUETS, EXPLOSIONS, AND KNASTER CONTINUA: DYNAMICS OF COMPLEX EXPONENTIALS by Robert L. Devaney Publicacions Matematiques, Vol 43 (1999), 27–54.
  114. Tuning From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2014.
  115. wikipedia : Conformal radius
  116. scholarpedia : Quadratic Siegel disks
  117. Julia Sets of Complex Polynomials and Their Implementation on the Computer by Christoph Martin Stroh
  118. fractalforums: bounding circle of julia sets by knighty
  119. wikipedia : Sequence
  120. wikipedia : series
  121. wikipedia : Continuum in set theory
  122. Mu-atom From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2013.
  123. Island Mu-Molecule by Robert P. Munafo, 2012 Aug 18.
  124. Internal addresses in the Mandelbrot set and Galois groups of polynomials by Dierk Schleicher, page 31
  125. Child From the Mandelbrot Set Glossary and Encyclopedia, by Robert Munafo, (c) 1987-2013.
  126. Surgery in Complex Dynamics by Carsten Lunde Petersen, online paper
  127. Internal addresses in the Mandelbrot set and irreducibility of polynomials by Dierk Schleicher
  128. wikipedia : Carathéodory's theorem (conformal mapping)
  129. The intrinsic geometry of a Jordan domain by Richard L. Bishop
  130. fractalforums : binary-decomposition-and-external-angles by Claude
  131. Norman Lebovitz : Textbook for Mathematics 27300
  132. wikipedia : Level set
  133. A. Blokh, X. Buff, A. Cheritat, L. Oversteegen The solar Julia sets of basic quadratic Cremer polynomials, Ergodic Theory and Dynamical Systems , 30 (2010), #1, 51-65
  134. wikipedioa: Surgery theory
  135. Fractus doc by Richard Rosenman
  136. wikipedia : Escaping set
  137. fractint doc : bailout
  138. Dessins d’enfants and Hubbard trees by Kevin M. Pilgrim
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.