How to Plot the Mandelbrot Set By Hand

Understand the basic formula, often expressed as z = z2 + c. This simply means that, for each point in the Mandelbrot universe we wish to see, we keep calculating z until one of two conditions occur; then we color it to show how many calculations we...

27 Steps 6 min read Advanced

Step-by-Step Guide

  1. Step 1: Understand the basic formula

    Don't worry! This will become clear in the following steps.
  2. Step 2: often expressed as z = z2 + c. This simply means that

    The reason we want three colors is because we'll make a first approximation with no more than 3 iterations (passes, or in other words, applying the formula up to 3 times per point): ,, This is the constant (c) value of the point in the exact center of the square.

    Now let's say each square is 2 units wide, so add and/or subtract 2 to/from the x and y values of each square, with x being the first number and y being the second number.

    When done, it will look like what you see displayed here.

    Whenever you follow the cells across, the y-values (the second number) should be the same; whenever you follow the cells down, the x-values (the first number) should be the same. , You, as the computer (actually, the original meaning of the word was "a person who computes") can do this yourself.

    Let's start with these assumptions:
    The starting z value of each square is (0, 0).

    When the absolute value of z, for a given point, is greater than or equal to 2, that point (and its corresponding square) is said to have escaped the Mandelbrot set.

    When that happens, you will color the square according to the number of iterations of the formula you have applied to that point.

    Choose the colors you will use for pass 1, pass 2, and pass
    3.

    Let's assume red, green, and blue, respectively, for purposes of this article.

    Calculate the value of z for the top-left corner of the tic-tac-toe board, assuming a starting z value of 0+0i or (0, 0) (see Tips for a better understanding of these representations).

    We are using the formula z = z2 + c as outlined in the first step.

    You will quickly see that, in this case, z2+c is simply c, since zero squared is still zero.

    And what is c for this square? (-2, 2).

    Determine the absolute value of this point; the absolute value of a complex number (a, b) is the square root of a2 + b2.

    Now, since we'll be comparing this to a known value: 2, we can avoid taking square roots by comparing a2 + b2 to 22, which we know equals
    4.

    In this calculation, a =
    -2 and b =
    2. (2 + 22) = (4 + 4) = 8, which is greater than
    4.

    It has escaped the Mandelbrot set after the first calculation, since its absolute value is greater than
    2.

    Color it with the pencil you chose for pass
    1.

    Do the same for each square on the board, except for the center square, which will not escape the Mandelbrot set by the 3rd pass (nor will it ever escape).

    So you've only used two colors: the pass 1 color for all the outer squares, and the pass 3 color for the middle square. ,, The first element, (-2, 1) is greater than 2 (because (-2)2 + 12 turns out to be 5) so let's paint that one red, as it escapes the Mandelbrot set on the first pass.

    The second element, (-1.5, 1) turns out not to be greater than
    2.

    Applying the formula for absolute value, x2+y2, with x =
    -1.5 and y = 1: (-1.5)2 =
    2.25 12 = 1
    2.25 + 1 =
    3.25, less than 4, so the square root is less than
    2.

    So we move on to our second pass, calculating z2+c using the shortcut (x2-y2, 2xy) for z2 (see Tips for how this shortcut is derived), still with x =
    -1.5 and y = 1: (-1.5)2
    - 12 becomes
    2.25
    - 1, which becomes
    1.25; 2xy, since x is
    -1.5 and y is 1, becomes 2(-1.5), which yields
    -3.0; This gives us a z2 of (1.25,
    -3) Now add c for this cell (add x to x, y to y) yielding (-0.25,
    -2) Let's test if its absolute value is now greater than 2:.

    Calculate x2 + y2: (-.25)2 = .0625
    -22 = 4 .0625 + 4 =
    4.0625, the square root of which is greater than 2, thus it has escaped after the second iteration: our first green! As you become familiar with the calculations, you'll sometimes be able to tell which ones escape the Mandelbrot set just by glancing at the numbers.

    In this example, the y component has a magnitude of 2, which when squared and added to the squared value of the other number, will be greater than
    4.

    Any number greater than 4 will have a square root greater than
    2.

    See the Tips below for a more detailed explanation.

    The third element, with a c value of (-1, 1) does not escape the first pass: since both 1 and
    -1 when squared is 1, x2+y2 is
    2.

    So we calculate z2+c, using the shortcut (x2-y2, 2xy) for z2: (-1)2-12 becomes 1-1, which is 0; 2xy is then 2(-1) =
    -2; z2 = (0,
    -2) adding c we get (0,
    -2) + (-1, 1) = (-1,
    -1) That's still the same absolute value as before (the square root of two, about
    1.41); continuing with a third iteration: (2)-(2) becomes 1-1, which is 0 (yet again)... but now 2xy is 2(-1)(-1), which is positive 2, yielding a z2 value of (0, 2) adding c we get (0, 2) + (-1, 1) = (-1, 3), which has an a2 + b2 of 10, much greater than
    4.

    Thus this one also escapes.

    Color the cell in with your third color, blue, and move on to the next one, since we have completed three iterations with this point.

    The fact that we're using only three colors becomes apparent as a problem here, since something that escapes after only 3 iterations is colored the same as (0, 0) which never escapes; obviously we still won't see anything close to the Mandelbrot "bug" at this level of detail. , Here's how the 9 by 9 matrix looks after 3 iterations on each square...Looks like we're onto something! , You get more accurate pictures by:
    Increasing the number of cells; this has 81 cells per side.

    Note the similarity to the 9 by 9 matrix above, but the much smoother edges on the circle and oval.

    Increasing the number of colors (iterations); this has 256 shades each of red, green, and blue for a total of 768 colors compared to
    3.

    Note that you can now see the outline of the well-known Mandelbrot "lake" (or "bug"

    depending on how you look at it).

    The downside is the amount of time it takes; if you can calculate each iteration in 10 seconds, that's about 2 hours for each cell in, or close to, the Mandelbrot lake.

    Though that's a relatively small part of the 81 by 81 matrix, it would still probably take a year to complete it, even if you worked on it for several hours each day.

    This is where the silicon type of computer comes in handy.
  3. Step 3: for each point in the Mandelbrot universe we wish to see

  4. Step 4: we keep calculating z until one of two conditions occur; then we color it to show how many calculations we made.

  5. Step 5: Get 3 different-colored pencils

  6. Step 6: or crayons

  7. Step 7: or felt-tipped markers

  8. Step 8: plus a black pencil or pen to make the outline.

  9. Step 9: With the black marker

  10. Step 10: draw a large tic-tac-toe board

  11. Step 11: 3 by 3 squares

  12. Step 12: on a piece of paper.

  13. Step 13: Label (also in black) the middle square (0

  14. Step 14: Calculate the first pass

  15. Step 15: or iteration

  16. Step 16: of the formula.

  17. Step 17: Let's try a square 3 times bigger

  18. Step 18: 9 by 9

  19. Step 19: but still keeping a maximum of 3 iterations.

  20. Step 20: Start with the 3rd row down

  21. Step 21: because that's where it gets interesting right away.

  22. Step 22: Continue calculating each cell until it has escaped

  23. Step 23: or you have reached the maximum number of iterations (the number of colors you're using: 3 in this example)

  24. Step 24: at which point you color it.

  25. Step 25: Iterate the same matrix again with more colors (iterations) to reveal the next few layers

  26. Step 26: or better

  27. Step 27: draw up a much larger matrix for a longer-term project!

Detailed Guide

Don't worry! This will become clear in the following steps.

The reason we want three colors is because we'll make a first approximation with no more than 3 iterations (passes, or in other words, applying the formula up to 3 times per point): ,, This is the constant (c) value of the point in the exact center of the square.

Now let's say each square is 2 units wide, so add and/or subtract 2 to/from the x and y values of each square, with x being the first number and y being the second number.

When done, it will look like what you see displayed here.

Whenever you follow the cells across, the y-values (the second number) should be the same; whenever you follow the cells down, the x-values (the first number) should be the same. , You, as the computer (actually, the original meaning of the word was "a person who computes") can do this yourself.

Let's start with these assumptions:
The starting z value of each square is (0, 0).

When the absolute value of z, for a given point, is greater than or equal to 2, that point (and its corresponding square) is said to have escaped the Mandelbrot set.

When that happens, you will color the square according to the number of iterations of the formula you have applied to that point.

Choose the colors you will use for pass 1, pass 2, and pass
3.

Let's assume red, green, and blue, respectively, for purposes of this article.

Calculate the value of z for the top-left corner of the tic-tac-toe board, assuming a starting z value of 0+0i or (0, 0) (see Tips for a better understanding of these representations).

We are using the formula z = z2 + c as outlined in the first step.

You will quickly see that, in this case, z2+c is simply c, since zero squared is still zero.

And what is c for this square? (-2, 2).

Determine the absolute value of this point; the absolute value of a complex number (a, b) is the square root of a2 + b2.

Now, since we'll be comparing this to a known value: 2, we can avoid taking square roots by comparing a2 + b2 to 22, which we know equals
4.

In this calculation, a =
-2 and b =
2. (2 + 22) = (4 + 4) = 8, which is greater than
4.

It has escaped the Mandelbrot set after the first calculation, since its absolute value is greater than
2.

Color it with the pencil you chose for pass
1.

Do the same for each square on the board, except for the center square, which will not escape the Mandelbrot set by the 3rd pass (nor will it ever escape).

So you've only used two colors: the pass 1 color for all the outer squares, and the pass 3 color for the middle square. ,, The first element, (-2, 1) is greater than 2 (because (-2)2 + 12 turns out to be 5) so let's paint that one red, as it escapes the Mandelbrot set on the first pass.

The second element, (-1.5, 1) turns out not to be greater than
2.

Applying the formula for absolute value, x2+y2, with x =
-1.5 and y = 1: (-1.5)2 =
2.25 12 = 1
2.25 + 1 =
3.25, less than 4, so the square root is less than
2.

So we move on to our second pass, calculating z2+c using the shortcut (x2-y2, 2xy) for z2 (see Tips for how this shortcut is derived), still with x =
-1.5 and y = 1: (-1.5)2
- 12 becomes
2.25
- 1, which becomes
1.25; 2xy, since x is
-1.5 and y is 1, becomes 2(-1.5), which yields
-3.0; This gives us a z2 of (1.25,
-3) Now add c for this cell (add x to x, y to y) yielding (-0.25,
-2) Let's test if its absolute value is now greater than 2:.

Calculate x2 + y2: (-.25)2 = .0625
-22 = 4 .0625 + 4 =
4.0625, the square root of which is greater than 2, thus it has escaped after the second iteration: our first green! As you become familiar with the calculations, you'll sometimes be able to tell which ones escape the Mandelbrot set just by glancing at the numbers.

In this example, the y component has a magnitude of 2, which when squared and added to the squared value of the other number, will be greater than
4.

Any number greater than 4 will have a square root greater than
2.

See the Tips below for a more detailed explanation.

The third element, with a c value of (-1, 1) does not escape the first pass: since both 1 and
-1 when squared is 1, x2+y2 is
2.

So we calculate z2+c, using the shortcut (x2-y2, 2xy) for z2: (-1)2-12 becomes 1-1, which is 0; 2xy is then 2(-1) =
-2; z2 = (0,
-2) adding c we get (0,
-2) + (-1, 1) = (-1,
-1) That's still the same absolute value as before (the square root of two, about
1.41); continuing with a third iteration: (2)-(2) becomes 1-1, which is 0 (yet again)... but now 2xy is 2(-1)(-1), which is positive 2, yielding a z2 value of (0, 2) adding c we get (0, 2) + (-1, 1) = (-1, 3), which has an a2 + b2 of 10, much greater than
4.

Thus this one also escapes.

Color the cell in with your third color, blue, and move on to the next one, since we have completed three iterations with this point.

The fact that we're using only three colors becomes apparent as a problem here, since something that escapes after only 3 iterations is colored the same as (0, 0) which never escapes; obviously we still won't see anything close to the Mandelbrot "bug" at this level of detail. , Here's how the 9 by 9 matrix looks after 3 iterations on each square...Looks like we're onto something! , You get more accurate pictures by:
Increasing the number of cells; this has 81 cells per side.

Note the similarity to the 9 by 9 matrix above, but the much smoother edges on the circle and oval.

Increasing the number of colors (iterations); this has 256 shades each of red, green, and blue for a total of 768 colors compared to
3.

Note that you can now see the outline of the well-known Mandelbrot "lake" (or "bug"

depending on how you look at it).

The downside is the amount of time it takes; if you can calculate each iteration in 10 seconds, that's about 2 hours for each cell in, or close to, the Mandelbrot lake.

Though that's a relatively small part of the 81 by 81 matrix, it would still probably take a year to complete it, even if you worked on it for several hours each day.

This is where the silicon type of computer comes in handy.

About the Author

S

Sara Ruiz

Specializes in breaking down complex hobbies topics into simple steps.

45 articles
View all articles

Rate This Guide

--
Loading...
5
0
4
0
3
0
2
0
1
0

How helpful was this guide? Click to rate: