Talk About Network



Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Fractals > Generalized Jul...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 3 of 4 Topic 169 of 206
Post > Topic >>

Generalized Julia for the Mandelbrot set

by Roger Bagula <rlbagula@[EMAIL PROTECTED] > Jul 21, 2007 at 01:39 PM

This is a multi-part message in MIME format.
--------------020706070605060506050601
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit

The cubic polynomial has many faults;
amoung them are:
1) size ( cubic Julias are usuaklly bigger in size)
2) placement of bilateral bulbs in the y direction
3) lack of the antenna structure associated with the Mandelbrot set.

The general polynomial simulation  model goes like this :
 
Limit[x^2+Sum[a(i)*x^i,{i,0,Infinity}]-> f(x)=x^2+c

The theory goes that the polynomial:

p(x)=Sum[a(i)*x^i,{i,0,Infinity}]

is a reconstruction of the attractor roots such that the Julia iteration
mimics the Mandelbrot set exactly.

Two polynomial Julias that demonstrate this approach are:
cubic: ( based loosely on the Boris Solomyak function: * On the 
`Mandelbrot set' for pairs of linear maps: asymptotic self-similarity, 
<http://www.math.washington.edu/%7Esolomyak/PREPRINTS/asymp2.ps>
*/ 
Nonlinearity /* 18 * (2005), 1927--1943.
http://www.math.washington.edu/~solomyak/PREPRINTS/fractal.html)
f(r)=(r^2 + (1 - r - r^2 + r^3)/3)
pentic:
f(r)=(r^2 + (1 - r - r^2 + r^3 - r^4 + r^5)/5)

Another less successful polynomial I found is:
g[x_] = ExpandAll[(x + .6557)*(x -  0.2616574221163778` - 
0.8516078436906926*I*(x - 0.2616574221163778` + 0.8516078436906926`*I)]

An animation of a Bezier between a cubic and a pentic:
a0 = 1 + 5/9;
sd = Sqrt[7];

f0[r_] := p*(r^3 + (a0)*r^2 - (r/(
    a0) - 1))/sd + (1 - p)*(r^2 + (1 - r - r^2 + r^3 - r^4 + r^5)/5)
3D Julia of Mandelbrot like cubic to pentic Bezier
(*Julia with SQRT(x^2 + y^2) limited measure*)
(*by R. L. BAGULA 21 July  2007 © *)
numberOfz2ToEscape[z_] := Block[
    {escapeCount, nz = N[z], nzold = 0},
    For[
        escapeCount = 0,
        (Sqrt[Re[nz]^2 + Im[nz]^2] < 16) && (
        escapeCount < 255) && (Abs[nz - nzold] > 10^(-3)),
        nzold = nz;
        nz = f0[nz];
        ++escapeCount
    ];
    escapeCount
]
FractalPureM[{{ReMin_, ReMax_, ReSteps_},
             {ImMin_, ImMax_, ImSteps_}}] :=
        Table[
            numberOfz2ToEscape[x + y I],
            {y, ImMin, ImMax, (ImMax - ImMin)/ImSteps},
            {x, ReMin, ReMax, (ReMax - ReMin)/ReSteps}
       
    ]
   
p = n/26
Table[ListDensityPlot[FractalPureM[{{-3.5, 1.5, 100}, {-2.5, 2.5, 100}}],
                          Mesh -> False,
                          AspectRatio -> Automatic,
                         ColorFunction -> (Hue[2#] &)];, {n, 1, 25}]

--------------020706070605060506050601
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 8bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=UTF-8" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
The cubic polynomial has many faults;<br>
amoung them are:<br>
1) size ( cubic Julias are usuaklly bigger in size)<br>
2) placement of bilateral bulbs in the y direction<br>
3) lack of the antenna structure associated with the Mandelbrot set.<br>
<br>
The general polynomial simulation  model goes like this :<br>
 <br>
Limit[x^2+Sum[a(i)*x^i,{i,0,Infinity}]-&gt; f(x)=x^2+c<br>
<br>
The theory goes that the polynomial:<br>
<br>
p(x)=Sum[a(i)*x^i,{i,0,Infinity}]<br>
<br>
is a reconstruction of the attractor roots such that the Julia
iteration <br>
mimics the Mandelbrot set exactly.<br>
<br>
Two polynomial Julias that demonstrate this approach are:<br>
cubic: ( based loosely on the Boris Solomyak function: <b> <a
 href="http://www.math.washington.edu/%7Esolomyak/PREPRINTS/asymp2.ps">
On the `Mandelbrot set' for
pairs of linear
maps: asymptotic self-similarity,
</a> </b><i> Nonlinearity </i><b> 18 </b> (2005), 1927--1943.<br>
<a class="moz-txt-link-freetext"
href="http://www.math.washington.edu/~solomyak/PREPRINTS/fractal.html">http://www.math.washington.edu/~solomyak/PREPRINTS/fractal.html</a>)<br>
f(r)=(r^2 + (1 - r - r^2 + r^3)/3)<br>
pentic:<br>
f(r)=(r^2 + (1 - r - r^2 + r^3 - r^4 + r^5)/5)<br>
<br>
Another less successful polynomial I found is:<br>
g[x_] = ExpandAll[(x + .6557)*(x -  0.2616574221163778` -
0.8516078436906926*I*(x - 0.2616574221163778` +
0.8516078436906926`*I)]<br>
<br>
An animation of a Bezier between a cubic and a pentic:<br>
a0 = 1 + 5/9;<br>
sd = Sqrt[7];<br>
<br>
f0[r_] := p*(r^3 + (a0)*r^2 - (r/(<br>
    a0) - 1))/sd + (1 - p)*(r^2 + (1 - r - r^2 + r^3 - r^4 +
r^5)/5)<br>
3D Julia of Mandelbrot like cubic to pentic Bezier<br>
(*Julia with SQRT(x^2 + y^2) limited measure*)<br>
(*by R. L. BAGULA 21 July  2007 © *)<br>
numberOfz2ToEscape[z_] := Block[<br>
    {escapeCount, nz = N[z], nzold = 0},<br>
    For[<br>
        escapeCount = 0,<br>
        (Sqrt[Re[nz]^2 + Im[nz]^2] &lt; 16) &amp;&amp; (<br>
        escapeCount &lt; 255) &amp;&amp; (Abs[nz - nzold] &gt;
10^(-3)),<br>
        nzold = nz;<br>
        nz = f0[nz];<br>
        ++escapeCount<br>
    ];<br>
    escapeCount<br>
]<br>
FractalPureM[{{ReMin_, ReMax_, ReSteps_},<br>
             {ImMin_, ImMax_, ImSteps_}}] :=<br>
        Table[<br>
            numberOfz2ToEscape[x + y I],<br>
            {y, ImMin, ImMax, (ImMax - ImMin)/ImSteps},<br>
            {x, ReMin, ReMax, (ReMax - ReMin)/ReSteps}<br>
        <br>
    ]<br>
    <br>
p = n/26<br>
Table[ListDensityPlot[FractalPureM[{{-3.5, 1.5, 100}, {-2.5, 2.5,
100}}],<br>
                          Mesh -&gt; False,<br>
                          AspectRatio -&gt;
Automatic,<br>
                         ColorFunction -&gt;
(Hue[2#] &amp;)];, {n, 1,
25}]<br>
</body>
</html>

--------------020706070605060506050601--




 4 Posts in Topic:
Cubic Julia IFS models for for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-18 20:10:33 
Iterative version of cubic Julia Mandelbrot like Bezier
Roger Bagula <rlbagula  2007-07-19 23:20:47 
Generalized Julia for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-21 13:39:41 
Re: Cubic Julia IFS models for for the Mandelbrot set
Roger Bagula <rlbagula  2007-07-21 07:12:48 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat May 17 3:10:20 CDT 2008.