Fractals/Iterations in the complex plane/def cqp
From Wikibooks, the open-content textbooks collection
< Fractals
[edit] Definitions
[edit] Complex quadratic map
- math notation :

- Maxima function :
f(z,c):=z*z+c;
[edit] Iterated function (map)
- math notation
where
- Maxima notation :
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);
[edit] Derivative of Iterated function (map)
[edit] Derivative with respect to c
This derivative can be found by iteration starting with
and then
This can be verified by using the chain rule for the derivative.
Maxima notation :
dcfn(p, z, c) := if p=0 then 1 else 2*fn(p-1,z,c)*dcfn(p-1, z, c)+1;
Example values :
[edit] Derivative with respect to z
[edit] Standard polynomial
which roots are periodic z-points of period p and its divisors
- math notation :
[1] - Maxima function :
F(p, z, c) := fn(p, z, c) - z ;
[edit] Function for computing reduced polynomial
which roots are periodic z-points of period p without its divisors
- math definition :

- Maxima function:
G[p,z,c]:= block( [f:divisors(p), t:1], /* t is temporary variable = product of Gn for (divisors of p) other then p */ f:delete(p,f), /* delete p from list of divisors */ if p=1 then return(F(p,z,c)), for i in f do t:t*G[i,z,c], g: F(p,z,c)/t, return(ratsimp(g)) )$
[edit] Multiplier of periodic z-point

m(p):=diff(fn(p,z,c),z,1);
[edit] Unit circle
= boundary of unit disk

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

[edit] Hyperbolic component of Mandelbrot set
Domain is an open connected subset of a complex plane.
"A hyperbolic component H of Mandelbrot set is a maximal domain on which
has an attracting periodic orbit.
A center of a H is a parameter
such that the corresponding periodic orbit has multiplier 0." [2]












