In the 2d Mandelbrot set the Pc(n) polynomials have solutions that
give clear cyclic
Julia bulbs and the set has nice clear lapin Julia sets that show
the cycles.
So you should in 2d have three variable 'invariants'
as polynomials that give solutions whose Julias are countable cycles
by the n level of the polynomial.
A 3d equivalent to a Douady Rabbit Julia set would be the first step.
References;
The Beauty of Fractals page 43,page 58.
Complex Dynamics page 129-130.
So you have to find the 3d polynomials,
solve them and look at the Julias.
The phase locking behavior of self-similar sets is why
I say that the true Mandelbrot set in 3d should have
some sort on antenna.
The posting of boasts of some sort of solution
without giving a derivation and clear
mathematical formula is why the mathematicians call
these "dumb' fractal artists"?
If something is true mathematically it is subject to
intimate examination by everybody
and isn't a 'secret formula'.
So mocking the authority figures just gets you in deeper
and makes them laugh harder at the ignorant fractal artist clowns?
Pictures of a pretty set posted to the Internet...
First level solution:
Solve[a[[1]], {x0, y0, z0}]
{{x0 -> -1, y0 -> -1, z0 -> -1},
{x0 -> 0, y0 -> 0, z0 -> 0},
{x0 -> 0, y0 -> 0, z0 -> 1},
{x0 -> 0, y0 -> 1, z0 -> 0},
{x0 -> 0, y0 -> 3, z0 -> 1},
{x0 -> 1, y0 -> 0, z0 -> 0},
{x0 -> 1, y0 -> 0, z0 -> 3},
{x0 -> 3, y0 -> 1, z0 -> 0}}
Second level solution:
Solve[a[[2]], {x0, y0, z0}]
{{x0 -> -1, y0 -> -1, z0 -> -1},
{x0 -> 0, y0 -> 0, z0 -> 0},
{x0 -> 0, y0 -> 0, z0 -> 1},
{x0 -> 0, y0 -> 1, z0 -> 0},
{x0 -> 0, y0 -> 3, z0 -> 1},
{x0 -> 1, y0 -> 0, z0 -> 0},
{x0 -> 1, y0 -> 0, z0 -> 3},
{x0 -> 3, y0 -> 1, z0 -> 0}}
The third level hasn't yet come down ( is calculating).
That is how the Julia root points for the cycles if they exist for a
3d Mandelbrot algorithm are calculated
There is another way to look at these as implicit
curves in product. In 2d it gives another representation of the
Mandelbrot set:
http://www.mathematica-users.org/webMathematica/wiki/wiki.jsp?pageName=User:Roger_Bagula
In the 3d case each polynomial set has a 3d implicit surface
associated with it.
They are no simple curves in the higher iterations.
Respectfully, Roger L. Bagula
> 11759 Waterhill Road, Lakeside,Ca 92040-2905,tel: 619-5610814 :
> http://www.google.com/profiles/Roger.Bagula
> alternative email: roger....@gmail.com
> If something is true mathematically it is subject to
> intimate examination by everybody
> and isn't a 'secret formula'.
Here's Paul Nylander's latest suggestion - you'll see why he thinks
this is "better" :)
http://www.fractalforums.com/3d-fractal-generation/true-3d-mandlebrot-type-fractal/msg8680/#msg8680
Or, I prefer the compact UF version with ztemp, zri and cri complex,
r, zj, cj and @mpwr real though @mpwr could be complex:
ztemp = ((r=cabs(zri)) + flip(zj))^@mpwr
zri = real(ztemp)*(zri/r)^@mpwr + cri
zj = imag(ztemp) + cj
It'd be interesting if someone could add the 3rd dimension to the
power/degree but that's beyond my maths )
If you can write it out in the form:
x'=f1(x,y,z)+x0
y'=f2(x,y,z)+y0
z'=f2(x,y,z)+z0
we might be able to get a Douady's rabbit
equivalent for the cycles test of a Mandelbrot set.
Which one ?
Note that some are using a simplistic numerically based pseudo-
distance estimate routine which is essentially based on the smooth
iteration density alone. This means that it's definition of "solid"
when based on a distance estimate threshold is not quite the same as
that based on an analytical distance estimation threshold, but in
general it's pretty close :)
With respect that to the cycle test I'll leave that to you or others
more mathematically qualified than myself ;)
Besides I can't really follow Mathematica code and have no access to
it.
> Or, I prefer the compact UF version with ztemp, zri and cri complex,
> r, zj, cj and @mpwr real though @mpwr could be complex:
>
> ztemp = ((r=cabs(zri)) + flip(zj))^@mpwr
> zri = real(ztemp)*(zri/r)^@mpwr + cri
> zj = imag(ztemp) + cj
>
> It'd be interesting if someone could add the 3rd dimension to the
> power/degree but that's beyond my maths )
Here's an idea:
ztemp = ((r=cabs(zri)) + flip(zj))^pri
zri = real(ztemp)*(zri/r)^pri + cri
zj = imag(ztemp)^pj + cj