Benoit Mandelbrot

I just read that earlier today, Benoît Mandelbrot passed awayMandelbrot’s most famous discovery, the Mandelbrot fractal, played an important early role in my interest in both programming and mathematics, and I’ve revisited Mandelbrot fractals many times as programming samples for new languages or frameworks I’ve looked at.  I was lucky to have an opportunity to hear Mandelbrot speak in person a few years ago when he stopped by the Microsoft campus on a book tour for his book The Misbehaviour of Markets: A Fractal View of Financial Turbulence

In honor of Mandelbrot, here are two very simple takes on the Mandelbrot fractal that I’ve written in the last couple years.

Mandelbrot in the F# Interactive

One of the first pieces of F# code I wrote is below.  I blogged about this here.

image  

Mandelbrot in 175 characters of Javascript

Inspired by the js1k.com competition earlier this year, I adapted Ken Perlin’s very cool C program to Javascript as a 175 character program for rendering a Mandelbrot fractal in any browser.  Couldn’t quite get it to fit in a single tweet though (rule #6 of the js1k challenge).

 y=-16;s="<pre>";while(s+='\n',y++<15)for(x=0;x++<84;s+=(" 
.:-;!/>)|&IH%*#"[k&15]))for(i=k=r=0;j=r*r-i*i-2+x/25,i=2*r
*i+y/10,j*j+i*i<11&&k++<111;r=j);document.body.innerHTML=s

 clip_image001

Check it out here for the full page source.

[UPDATE:  And here's a slightly more fully featured implementation, using Javascript and HTML5 canvas. ]