Fractals and Area summation in Mathematica

In summary, the given task involves creating a fractal by placing smaller equilateral triangles within a larger equilateral triangle. By summing a series, it is shown that the area of the fractal is finite and can be calculated. The boundary of the fractal has infinite length, demonstrated through the use of a well-studied series. Both theoretical and empirical evidence is provided to show that the series does not converge. The resulting fractal can then be drawn.
  • #1
jasondraime
1
0

Homework Statement


Begin with an equilateral triangle T of side length 1
At the middle of each side of T place an equilateral triangle whose side lengths are 1/3
Repeat this process ad infinitum

By summing an appropriate series, show that the area A of the fractal obtained above is finite, find A. Plot the area vs. iteration number, up to iteration 200.
By summing an appropriate series show that the boundary of the fractal has infinite length. What well studied series do we get? Show both theoretically and empirically how we know the series does not converge.

Draw the fractal

Homework Equations


Harmonic Series: 1/n
Telescoping Series: b(n)-b(n+1) where the values in the parentheses are sub-notations
Geometric Series: cr^n

The Attempt at a Solution


So far I am able to create a triangle with side lengths of 1, however I'm already stuck at placing the new triangles within it.

[In]:r = 0;
s = 0;
t = 1;
u = 0;
v = 0.5;
w = 0.866;

[In]:T = Polygon[{{r, s}, {t, u}, {v, w}}]
[Out]:Polygon[{{0, 0}, {1, 0}, {0.5, 0.866}}]

[In]:Graphics[{Directive[Purple, Opacity[.5], EdgeForm[Thickness[.006]]],
tri}, ImageSize -> 200]
[Out]: A purple equilateral triangle
 
Physics news on Phys.org
  • #2
with side lengths of 1I'm not sure how to proceed from here, if anyone can provide any help it would be greatly appreciated.
 

What are fractals?

Fractals are complex geometric patterns that repeat themselves at different scales. They are created through mathematical equations and have a self-similar structure, meaning that smaller parts of the fractal look similar to the whole.

What is area summation in Mathematica?

Area summation in Mathematica is a technique used to calculate the total area under a mathematical curve or function. It involves dividing the area into smaller rectangles and adding up their individual areas to get an approximation of the total area.

Can fractals be created in Mathematica?

Yes, fractals can be generated in Mathematica using various built-in functions such as FractalImage[] and JuliaSetPlot[]. Users can also create their own custom fractals using programming techniques.

How can Mathematica help with studying fractals and area summation?

Mathematica provides a powerful platform for exploring and analyzing fractals and performing area summation calculations. It offers a wide range of built-in functions and tools for visualizing and manipulating fractals, as well as computing accurate area approximations.

What are some real-world applications of fractals and area summation?

Fractals and area summation have various applications in fields such as computer graphics, finance, and ecology. They are used to generate realistic-looking images, model financial markets, and study complex natural systems and patterns, among other uses.

Similar threads

  • Calculus and Beyond Homework Help
Replies
9
Views
5K
Replies
10
Views
953
  • Calculus and Beyond Homework Help
Replies
2
Views
3K
  • Calculus and Beyond Homework Help
Replies
14
Views
3K
  • Precalculus Mathematics Homework Help
Replies
3
Views
856
Replies
1
Views
770
  • Calculus and Beyond Homework Help
Replies
2
Views
2K
  • Calculus and Beyond Homework Help
Replies
5
Views
2K
  • Calculus and Beyond Homework Help
Replies
7
Views
3K
  • Calculus and Beyond Homework Help
Replies
2
Views
2K
Back
Top