Logo by Jimpan1973 - Contribute your own Logo!

END OF AN ERA, FRACTALFORUMS.COM IS CONTINUED ON FRACTALFORUMS.ORG

it was a great time but no longer maintainable by c.Kleinhuis contact him for any data retrieval,
thanks and see you perhaps in 10 years again

this forum will stay online for reference
News: Did you know ? you can use LaTex inside Postings on fractalforums.com!
 
*
Welcome, Guest. Please login or register. April 19, 2024, 12:38:38 AM


Login with username, password and session length


The All New FractalForums is now in Public Beta Testing! Visit FractalForums.org and check it out!


Pages: [1]   Go Down
  Print  
Share this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on RedditShare this topic on StumbleUponShare this topic on Twitter
Author Topic: Dense Julia sets on the sphere  (Read 7581 times)
0 Members and 1 Guest are viewing this topic.
s31415
Conqueror
*******
Posts: 110



WWW
« on: March 17, 2012, 04:52:39 PM »

Hi,

I've been exploring for a while "dense" Julia sets, i.e. Julia sets filling the whole plane. But actually, it turns out that they can be more naturally pictured on the sphere! A few of these Julia sets can be seen as full panoramas with the help of a cool Java applet. Check this collection of pictures:
http://algorithmic-worlds.net/expo/expo.php?Collection=Spherical&CollSearch=0
Once you click on a thumbnail, look for the link at the bottom of the page to see the full spherical Julia set.

More explanations can be found here:
http://algorithmic-worlds.net/blog/blog.php?Post=20120316

Sam
Logged

DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #1 on: March 17, 2012, 07:09:04 PM »

Question; can you give an example of the formula? And it escapes ... or not? Please wink
Logged

No sweat, guardian of wisdom!
s31415
Conqueror
*******
Posts: 110



WWW
« Reply #2 on: March 17, 2012, 08:11:11 PM »

Yes, I tried to explain it in the blog post, but maybe it wasn't so clear. Just iterate the following:
Take the square:

z -> z^2

then instead of simply adding a constant, perform a Moebius transformation:

z -> (az+b)/(cz+d)

Effectively this amounts to

z -> (az^2+b)/(cz^2+d)

Take for instance a = 1, d = 1 and explore a bit with b and c. For some values of the parameters, the Julia sets fills the whole plane (or sphere).

To find the values of the parmeters yielding dense Julia sets more easily, you can also draw a Mandelbrot-like fractal, by making either b or c to be equal to the value of the pixel.  Values associated to dense Julia sets appear in the form of "dusty" regions.

To answer your second question, the orbits do not escape for dense Julia sets. If an orbit escapes, it means that it converge to infinity, so that the corresponding point is "smooth" and that it does not belong to the Julia set. To color dense Julia sets, I use essentially the mean distance of the orbit to the origin, with a few fancy tricks. I explained this a bit here, in the case of Ducks fractals:
http://algorithmic-worlds.net/blog/blog.php?Post=20110319

To generalize further the formula above, just take the ratio of any two polynomials in z. If you tune the parameters, you'll find dense Julia sets as well.
« Last Edit: March 17, 2012, 08:16:33 PM by s31415 » Logged

DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #3 on: March 17, 2012, 08:21:09 PM »

Interesting thank you. the wave
Logged

No sweat, guardian of wisdom!
DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #4 on: March 17, 2012, 08:43:48 PM »

Here is a UF formula;

Code:
LGNabc {
; Sam's convergent Mandelbrot
; Use Pseudo magnitude as inner coloring
init:
  if @cu == 0
  z = @start
  c = #pixel
  else
  z = #pixel
  c = @start
  endif
  zold = 0
loop:
  z = z*z
  z = (@r1*z + @q1) / (@r2*z + c)
  zb = | zold-z |
bailout:
  (zb >= @cba) && (|z| < @bailout)

default:
  title = "Sam's convergent Mandel"
  complex param q1
    caption="c1"
    default=2
  endparam
  complex param r1
    caption="Rotate / zoom z up"
    default=1
  endparam
  complex param r2
    caption="Rotate / zoom z down"
    default=1
  endparam
  float param bailout
    caption="Bailout value"
    min=0
    default=1e20
  endparam
  float param cba
    caption="Bailout value (cvg)"
    min=0
    default=0
  endparam
  param start
    caption = "Seed/Perturb"
    default = (0,0)
  endparam
  param cu
    caption = "Current mode"
    enum = "Mandel" "Julia"
    default = 0
  endparam
  param sw
    caption = "Switch to"
    enum = "Mandel" "Julia"
    default = 1
  endparam
switch:
  type = "LGNabc"
  q1 = q1
  r1 = r1
  r2 = r2
  bailout = bailout
  cba = cba
  start = #pixel
  cu = sw
  sw = cu
}

Nice! wink


* tttye.JPG (51.55 KB, 661x522 - viewed 694 times.)
Logged

No sweat, guardian of wisdom!
s31415
Conqueror
*******
Posts: 110



WWW
« Reply #5 on: March 17, 2012, 08:47:45 PM »

Yes, that's a Mandelbrot-like fractal. Now use the switch feature in some dusty region, and you'll get a dense Julia set.
Logged

DarkBeam
Global Moderator
Fractal Senior
******
Posts: 2512


Fragments of the fractal -like the tip of it


« Reply #6 on: March 18, 2012, 11:51:22 AM »

More misty Mandelbrot images; last one is a "dense" Julia (well probably) alien wink


* misty.JPG (193.94 KB, 638x1442 - viewed 649 times.)
Logged

No sweat, guardian of wisdom!
s31415
Conqueror
*******
Posts: 110



WWW
« Reply #7 on: March 18, 2012, 12:34:38 PM »

Actually, the Julia set is not quite dense, there are some voids remaining. Dense Julia sets really fill the plane with patterns, look at the ones in my gallery.

Also, here is a video showing the transition between non-dense and dense Julia sets:
<a href="https://vimeo.com/moogaloop.swf?clip_id=31325295&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=01AAEA" target="_blank">https://vimeo.com/moogaloop.swf?clip_id=31325295&amp;server=vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=01AAEA</a>

Finally, I forgott to mention that Dan Wills has been exploring these dense fractals even before me, check his blog
http://ultraiterator.blogspot.fr/
Logged

Syntopia
Fractal Molossus
**
Posts: 681



syntopiadk
WWW
« Reply #8 on: March 18, 2012, 11:54:34 PM »

Funny, some weeks ago I wondered if spherical fractals existed :-)

Here is Fragmentarium image where the fractal plane is depicted together with the stereographical projection on the Riemann sphere. It is a nice way to be convinced these fractals fit naturally on the sphere. The script will be part of the next release.



* spherical.jpg (94.44 KB, 900x596 - viewed 632 times.)
Logged
s31415
Conqueror
*******
Posts: 110



WWW
« Reply #9 on: March 19, 2012, 12:08:44 AM »

Very nice!
Logged

cKleinhuis
Administrator
Fractal Senior
*******
Posts: 7044


formerly known as 'Trifox'


WWW
« Reply #10 on: March 19, 2012, 04:18:45 AM »

nice formula, deforms smoothly! excellent!
Logged

---

divide and conquer - iterate and rule - chaos is No random!
Pages: [1]   Go Down
  Print  
 
Jump to:  

Related Topics
Subject Started by Replies Views Last post
Virtual investigation to Mandelbrot sets and Julia sets Mandelbrot & Julia Set Jules Ruis 0 6647 Last post October 19, 2006, 06:36:54 PM
by Jules Ruis
3d printed dense Julia set Format, Printing & Post Production s31415 2 3428 Last post June 17, 2012, 04:05:33 PM
by s31415
An animation of periodic dense Julia patterns Movies Showcase (Rate My Movie) s31415 0 1261 Last post June 26, 2012, 10:54:48 PM
by s31415
4D Julia / 3-sphere intersection 3D Fractal Generation Daniel_P 7 14384 Last post October 14, 2012, 01:19:16 AM
by Daniel_P
Dense DEEPDREAM Mandelbrot zoom - Julia morphing Movies Showcase (Rate My Movie) Dinkydau 8 2859 Last post August 23, 2015, 02:40:31 PM
by cKleinhuis

Powered by MySQL Powered by PHP Powered by SMF 1.1.21 | SMF © 2015, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM
Page created in 0.203 seconds with 27 queries. (Pretty URLs adds 0.007s, 2q)