Title: polysigned mandelbulbs? Post by: Tglad on November 23, 2009, 08:03:05 AM A 3d mandelbulb could perhaps be constructed using polysigned numbers: http://www.bandtechnology.com/PolySigned/PolySigned.html
The author even gives it a go himself (search for the mandelbrot link)... results don't look great, maybe he had a bug in his algorithm. Title: Re: polysigned mandelbulbs? Post by: Tglad on November 24, 2009, 01:55:32 AM There wasn't a mistake in the author's 3d mandelbrot slice, its just that (unfortunately) polysigned numbers produce a boring 3d mandelbrot:
(http://polyfractal.jpg) While I was at it, I tried applying a quaternion multiply to the 4-signed mandelbrot, which gave this funny (but useless) object: (http://polyFracQuat.jpg) Title: Re: polysigned mandelbulbs? Post by: Dranorter on November 24, 2009, 11:34:10 PM Actually I really like the author's results! I mean, the high-polysigned set slices apparently approach a simple geometrical pattern. It may not look very fancy but it's an interesting result.
Title: Re: polysigned mandelbulbs? Post by: kram1032 on December 05, 2009, 11:19:10 AM hmmm...
did you also look at this page: http://www.bandtechnology.com/PolySigned/MagnitudeSweep/index.html ? I'm not sure if the author noticed, but the yellow part of the 2D projection of a 5D space actually looks a lot like a slightly distorted Mandelbrot.... (http://www.bandtechnology.com/PolySigned/MagnitudeSweep/P6_-zz@m_m+=4e-4_800Pix.png) And the one above might be a 3D(ish) Mandelbrot! - though the points would need to be way denser to definitely show... (http://www.bandtechnology.com/PolySigned/MagnitudeSweep/P6HighDensity.png) Title: Re: polysigned mandelbulbs? Post by: kujonai on December 11, 2009, 02:05:11 PM congratulations to the author, i never saw a 4-signed arithmetic in movement, and the polysigned arithmetic of graphical way, a beautiful web. :o :tongue1:
regards ps: i d like to have it seen some time ago ps2: the graphs are very atomics ps3: precisely, that is it i want to do with polisigned arithmetics ( to see the fractal results) Title: Re: polysigned mandelbulbs? Post by: TimGolden on December 17, 2009, 01:42:36 AM Thanks Kujonai for the kudos.
The most interesting thing is that the magnitude sweep functions are not conditional. When the points escape they simply escape the graph; the red lines sweeping away outward. These graphs are motivated because within the spirit of polysign we see that the elemental form s x exposes the magnitude x as fundamental. These graphs expose dynamics which do treat magnitude as fundamental but in their signature spaces. They are not actually fractals but are their own branch of iterated functions. Magnitude Sweep is a fairly precise description of these iterated graphics. Some of you here are faster than me. You may not like my C++ source code, but then few like others' source code in the software world. Here is my current version of source packaged up so that you can have access: http://bandtechnology.com/PolySigned/polysign.tar.gz This is C++ source code with a cvs directory of revisions. The source should compile on Linux and cygwin as well. It needs the libgd library to generate graphics, which may then want some other libraries as well. The polysign library polysign.a is pretty robust. There may be some valid complaints since I learned C++ writing it, and early on I wanted to do things more openly than C++ wants them to be done. The math including some optimizations and error reporting is working cleanly. The code that made the graphics of this thread is called 'generation' and typing 'make generation' will put a binary 'generation' in ~/bin. That is to say you should create a bin directory in your home directory if you do not wish to edit the Makefile. This Makefile is not robust and is intended for research purposes, so that things are done lightly and quickly. No GUI is involved here. These programs are compile and run type of cycle. After unpacking the .gz file open a shell in the polysign directory and type mkdir ~/bin make generation ~/bin/generation A long list of numbers will print and a .png file will be generated in the directory your shell is in. The first image is unimpressive, but there are other routines in the main() of Generation.C that should be more pretty. Simply edit the file Generation.C and recompile and rerun the binary. Now you are doing polysign. Clearly my color scheme needs tremendous work. There is so much work to do it isn't funny, but the math is correct. I apologize in advance if you run into snags. Please let me know if you try it and if you have a problem maybe there is a simple fix. I've tested it on my own computer here and the procedure above works cleanly, but that is too easy a verification of course. - Tim Title: Re: polysigned mandelbulbs? Post by: kram1032 on December 17, 2009, 02:12:34 PM I don't see why Magnitude Sweep would prevent something frome exhibiting fractal nature ;) These really look close to some slightly bended Mandelbrotsets to me and I really wonder how they would look like if they where a) solid and b) zoomed :) Fractals could be called a nice side effect of a lot of iterated systems ^^ |