William Echols
Fractals Research
During my time with the TAMU Fractals Research Team (August 2023 - May 2024), I explored the fascinating world of fractals, with a particular focus on the Sierpiński gasket.
The Sierpiński gasket (also called the Sierpiński triangle) is one of the most famous examples of a fractal, which is a type of mathematical object that has "self-similarity" at all scales. The Sierpiński gasket is named after Polish mathematician Wacław Sierpiński, and can be generated through several different methods.
The most direct method to generate the Sierpiński gasket is through an infinite process of splitting an equilateral triangle into 4 smaller triangles. Since repeating a process infinitely is impossible, we instead approximate the Sierpiński gasket using a finite number of iterations.
Build it yourself!
Research Approach
In our research, we used C++ to implement various algorithms for generating and analyzing the Sierpiński gasket. Using matrices and techniques from linear algebra, we were able to recursively generate approximations of the Sierpiński gasket and analyze its properties as the number of iterations increased.
Properties
The Sierpiński gasket exhibits several interesting properties:
- Self-similarity: Each part of the fractal is a scaled replica of the whole. After a couple iterations, you can see that each of the three exterior triangles look like the whole fractal. Then, if you zoom into the sub-triangles of a given triangle, you can see that they look like the whole fractal as well. This process continues forever.
- Fractal dimension: The Sierpiński gasket has a "Hausdorff dimension" of approximately 1.585. This means that the fractal is not a 1D line or 2D surface, but something in between.
- Infinite perimeter: As the number of iterations increases, the perimeter of the gasket approaches infinity while its area approaches zero.
Hausdorff Dimension = log(3)/log(2) ≈ 1.585
The Chaos Game Method
One of the most surprising ways to generate the Sierpiński gasket is the "chaos game":
- Start with three points forming a triangle
- Pick a random point inside the triangle
- Randomly select one of the three vertices
- Move halfway from your current position toward the selected vertex
- Plot this new point
- Repeat
This random process creates the Sierpiński pattern. Try it out for yourself!
Seemingly out of nowhere, we can consistently generate the Sierpiński gasket using only a random number generator and a few simple rules.
Applications and Connections
The Sierpiński gasket has applications in:
- Antenna design
- Computer graphics and procedural generation
- Network topology optimization
- Natural patterns (such as some leaf structures)
- Making cool shapes
Conclusion
I hope this page helps you to appreciate this interesting structure. One of the most appealing aspects of the Sierpiński gasket to me is a theme that reoccurs throughout mathematics: simple rules (such as in the game chaos or the idea of splitting an equaliteral triangle) often lead to fascinating, unexpected, and interconnected results.