in Science, Tutorial

Fractals 101

This new series of tutorials will explain what fractals are, why they are so important and what we can learn from them. This first lesson is a gentle introduction to the concept of iterated fractals and their dimension.

Mandelbrot_sequence_new

Since fractals naturally occur in nature, this series will be particularly interesting to all artists and game developers who want to create realistic outdoor environments.

Introduction

If you take a sphere and look close enough, you’ll reach a point in which its surface appears flat. We experience this every day on this very planet, but the idea works for every other traditional solid you can think of. Even the most detailed polyhedron will eventually look flat, if you zoom close enough. The true nature of a sphere is, in a nutshell, only appreciable at a certain distance. While this sounds obvious, there are geometric entities that escape this definition. Fractals – that’s how they’re called – are special shapes that gift us with an infinite level of detail. No matter how much you zoom on the its surface, a fractal will always offer more detail to look at. Even more bizarrely, some fractals exhibit a property called self-similarity: zooming on a part reveals the same complexity of the whole shape. This inception-like figures can be often created by iterating a process an infinite number of time.

170px-Von_Koch_curve

The animation on the left shows a Koch snowflake, which is a very simple type of fractal. It is created in steps, adding more complexity with each iteration. Its first iteration is a simple triangle. The next iteration takes the previous three edges and places a triangle on top of them, creating a six point star. The Koch snowflake only truly appears after an infinite amount of iterations. It is easy to see why it has an infinite amount of detail. The process which created is, by definition, creating an endless complexity. Each iteration increases the perimeter of the snowflake by a tiny amount; the real Koch snowflake has, in fact, an infinite perimeter.

Fractal Dimension

There’s a specific reason why fractals are called like that. But in order to understand it, we need to first introduce the concept of dimension. We’re all familiar with the idea that lines are 1-dimensional entities, planes are 2-D and volumes are 3-D. But what truly makes a line 1-dimensional? The idea behind the concept of dimension lies in the intuition that any point in a 1-dimensional object only require a single number to be uniquely addressed. You can think about the problem in these terms: if you’re living on a street, each house is uniquely addressed by its house number. Which is, basically, the distance from the beginning of the street. Given a fixed origin (grey), each point on a 1-dimensional line (red) can be addressed by its distance from the origin itself (below, left).

fractal

The same applies to a 2-dimensional shape, in which two coordinates are actually required to address each point . Whether they are expressed in Cartesian coordinates (up, middle) or polar coordinates (up, right), there’s no escape from the fact that two numbers are needed.

If we go back to the Koch snowflake presented in the previous section, we expect it to behave like a 1-dimensional entity, since it is made out of a single line. Unfortunately, a single number is not enough to uniquely identify a point on the curve. This is because the length between any two given points on a Koch snowflake is the same: infinity. The snowflake is not a 2-dimensional entity, since it has no surface, but it cannot be addressed with a single coordinate. Its dimension is somehow trapped between 1 and 2. The Koch snowflake has a dimension that is not an whole number, but a proper fraction: this is why is it said to have a fractal dimension.

Measuring the Complexity

220px-FractaldimensionexampleThere are different ways to measure this fractal dimension, depending on the way fractals are built. In the case of the Koch snowflake, the Hausdorff dimension is used; it is a metric designed to capture how much the length, surface or volume of a fractal changes with each iteration. When you double a line, its length is also doubled (scaled by a factor of one). When you double the side of a rectangle, its area increases four times (scaled by a factor of two). When you double the edge of a cube, its volume increases eight times (scaled by a factor of three). Hence, their Hausdorff dimensions will be one, two and three, respectively.

To create a Koch snowflake, what we have to do is to scale each segment by a third, and copy it four time. The process is then repeated onto each new segment created. All fractals that are generated with such an iterative process have, by definition, fractal Hausdorff dimension equal to \log_3 \left(4\right)\sim 1.26220px-Blueklineani2

Wikipedia has an interesting list of fractals (here), sorted by their Hausdorff dimension.

Conclusion

This post was a quick, gentle introduction to the concept of fractals. The next posts in this series will explore why fractals occur so often in nature, and why they’re so important.

fractal_10

Other resources

💖 Support this blog

This website exists thanks to the contribution of patrons on Patreon. If you think these posts have either helped or inspired you, please consider supporting this blog.

Patreon Patreon_button
Twitter_logo

YouTube_logo
📧 Stay updated

You will be notified when a new tutorial is released!

📝 Licensing

You are free to use, adapt and build upon this tutorial for your own projects (even commercially) as long as you credit me.

You are not allowed to redistribute the content of this tutorial on other platforms, especially the parts that are only available on Patreon.

If the knowledge you have gained had a significant impact on your project, a mention in the credit would be very appreciated. ❤️🧔🏻

Write a Comment

Comment

Webmentions

  • Unity 4D #1: Understanding the Fourth Dimension - Alan Zucconi

    […] Points in a generic 3D space require three coordinates, usually measured as the distance along three orthogonal axes: , and . In case you are interested, there are also geometrical objects which lie in an -dimensional space, needing more than coordinates to be fully defined: they are known as fractals, and you can learn more about them on Fractals 101. […]

  • Fractais: importância na computação e material para estudo |

    […] Na área de computação gráfica e games, os fractais ajudam a criar texturas, simular vegetação e construir paisagens procedurais. Aqui está um bom material para começar a estudar fractais: Fractals and Mathematical Art , Fractals-101 e Fractals-101-Mandelbrot […]

  • Fractals 101: Mandelbrot - Alan Zucconi

    […] is the second part of Fractals 101, a series of tutorial dedicated to fractals. This post will investigate two popular fractals: the […]