Re: More Mandelbrot sets???
I did mention that the two formulas were FUNDAMENTALLY different. One uses the ACOS function of "z" while the other uses the ACOSH function of "z". With real numbers, the acos function could only take arguments which have an absolute value less than or equal to 1.0, and produce results between 0 and 2PI. Similarly with real numbers, the acosh function could only take arguments which are positive and greater than or equal to 1.0, and produce results between +INFINITY and -INFINITY. However, raising either of these functions of "z" (a complex number) to the 4th power and adding "c" have been producing the identical fractal, which also happens to be a quarter replica of the M-set. I wonder if some genius mathematician could make sense of this unexpected behaviour with complex numbers. I got the same results with Fractint using the following formula and testing with the acos and acosh functions: rayfil { c = z = pixel: z = fn1(z) z = z*z z = z*z + c |z| < 4 } Raymond _________________________________________________________________ Add photos to your messages with MSN Premium. Get 2 months FREE* http://join.msn.com/?pgmarket=en-ca&page=byoa/prem&xAPID=1994&DI=1034&SU=htt...
Raymond Filiatreault wrote:
I did mention that the two formulas were FUNDAMENTALLY different. One uses the ACOS function of "z" while the other uses the ACOSH function of "z".
Complex triginometric and hyperbolic functions are closely related (as are their inverses), ie.: sin(z) = (exp(i*z)-exp(-i*z))/(2*i) sinh(z) = (exp(z)-exp(-z))/2 or your examples: acos(z) = -i * log(z+sqrt(z*z-1)) acosh(z) = log(z+sqrt(z*z-1)) All complex functions available in Fractint are listed like above somewhere in the online help, but as my use of the word "somewhere" indicates, some of these things are a bit hard to find if they are not part of the immediate help topic (reached by <F1>). A good idea is to run Fractint with the command line parameter "makedoc", which dumps the whole online help as one big ASCII text file named "fractint.doc" onto your harddisk... The functions are on page 185 and 186... Regards, Gerald
participants (2)
-
Gerald K. Dobiasovsky -
Raymond Filiatreault