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:

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":

  1. Start with three points forming a triangle
  2. Pick a random point inside the triangle
  3. Randomly select one of the three vertices
  4. Move halfway from your current position toward the selected vertex
  5. Plot this new point
  6. Repeat

This random process creates the Sierpiński pattern. Try it out for yourself!

10 points per frame

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:

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.