since it's technically forming a one dimensional shape, it's pretty much impossible to not put the dot in one of the blank areas, since the points have zero length and width.
@@BakedAlaskaTM They're not one dimensional, just more like 1.3 dimensional or like that. You can understand that with areas, if you will try a square and a line, i can give you link to one video about that.
Long time ago, I was an 8th grade math teacher. At the end of the year, after all the state testing was done and we were counting down days until summer break, I did a unit on fractals. I spent a couple of lessons teaching my students how to program their TI-83s to graph the Serpinski Triangle. The program is about 12 lines long and uses the algorithm at the start of this video. The program is still available and works on all of the TI-84s.
Oh, that's nice. If you'd like to check out my code it is at the bottom of the description however keep in mind that im new to coding so feel free to share any tips.
Is "Patrick" a trick performed by your father? That would mean that "Matrick" is a trick performed by your mother. Then we have Brotrick and Sistrick (obviously) and, if you have a four-legged pet, we have dotrick.
I think “chaos” is interpreted incorrectly here, chaos essentially means *extremely sensitive to initial conditions*: change the initial randomly selected point marginally different from the first attempt and see a completely different pattern emerge. In this case it is more like “randomness”, and is opposite to chaos in that despite any random input conditions will always form a result with order.
I was surprised by that as well. I tried to check if I gave made any mistakes in my code but everything seemed fine. Let me know if you find the answer:)
Either there's a problem with your code, or your RNG isn't working properly. I did this same thing in Java and the generated shape had rotational symmetry.
Cool, A bit of research, putting the first point into proper position and it will become a rotation similar fractal. Right? Btw. I came from *3b1b featured creators #1* and I'm happy I have. Your videos are showing pure beauty of math!
What you are describing here is an Iterative Function System, more specifically the "fractal flame algorithm", if you google that there is a paper as the second result. The first triangle algorithm you describe is the first one described in the paper. The paper goes on to describe techniques on how to improve the fidelity of the images generated (which can become very vivid and intricate!). These are used by programs such as Apophysis(7x) or Fractorium (which is a gpu based implementation, which runs many many times faster on basically any computer with a graphics card). For people interested in this, I highly recommend reading the paper and then trying the programs out, maybe looking at more informal tutorials as well.
After all that I have learnt about fractals and their formation; (fixed initial condition and a fixed algorithm put on loop) the video title intrigued me beyond words. This concept further pushes us from our understanding of fractals.
For those wondering why a fractal is produced, think of it like this: For the large middle black triangle, there is no random vertex and random point in the triangle you could pick such that the midpoint lies in that triangle. So, the random movement of the point will never land there. For the three smaller triangles, the only way for the midpoint to land there is for the starting point to be in the middle black triangle; however, as said before, the point never lands there, so the point never lands in these three triangles either. And then for the nine yet smaller triangles, their starting point would have to be in one of those three smaller triangles, and so on.
ohh omg huge thanks for the explanation ! so for the midpoint to land in the middle black triangle initially, a random point must be outside the triangle (and that's not the case here) and this would lead to the approach that our 3-sided triangle shown is adjacent to 3 larger black triangles outside on the screen
the rule was that the same vertex can't be chosen two times. Or the neighboring vertices can't be chosen. I can't remember from the top of my head right now.
I have done this simulation and created Sierpinski triangle images. I've also created a Sierpinski triangle using another algorithm, and I know a third algorithm. These are cool.
mathematicians: *put together an elegant closed system that works beautifully in creating an image that infinitely repeats itself over and over, evolving the world of mathematics and our understanding of it* me at 2:20 : hehe patrick
i believe this concept sparked a notion in my mind, that... this is one of the ways the Cosmos has to create reality, like a rule* that particles and atoms arrangement , a building block of the physical realm can never be in the same spot twice... a quick example, the snow crystals, but reality's matrix is 6 triangles facing each other or hexagonally based... 🤔
@@ThinkTwiceLtu I raised from one dollar to two is not much but I can't afford a lot, is just you, Veritasium, 3Blue1Brown, Science Asylum and Eugene Khutoryansky. So you are one of my top five! I'm a physics teacher in Portugal.
@@jlpsinde No worries, I appreciate any kind of support whether it's monetary or not. I am happy that you enjoy my videos it keeps me even more motivated to create more high-quality content. Thanks a lot:)
It's interesting that if you ran infinite cuts, there would basically be straight lines from the corners to the center, except for an infinitely small point in the very corner of the triangle. The middle points on the edges of the blue triangle create the midpoint on the edges of the cut out triangles, as the midpoint of the edge midpoint and vertices create triangles.
The math with the triangles came out perfectly matching what our universe probably would have done. The list of dots per size range from 1XXL to 3XL to 9L to 27M to 81S. To see how 9 plays a major part in our universe, check out Marko Rodin; or take the 1-9 multiplication table and reduce all the numbers through addition, for example 10=1+0=1, 12=1+2=3, 14=1+4=5 ect. This produces what I'm dubbing the Layman's Fingerprint of God because you can see how 9 exerts its dominance over it all. If you add it all together you get 459 or 4+5+9=18=1+8=9 and how it is surrounded by 9 and has 9 running though it. Making 9 very similar to our description of God being one who is equal to it all, yet outside of it all, yet running through it all.
The first triangle is very interesting. If you look at the pascall triangle. And always draw a dot for an odd number than you will get the exact same triangle pattern. Math ist beautifull
Numberphile made a video on the same topic too. All those who liked this video should check that too. Just type in "Chaos Game Numberphile" on your UA-cam search and you should find it.
Reality cannot be whatever you want because other people have different ideas of what is the center . The relation between your Center and other centers is what makes "reality"
Nice! Have you tried to use an initial point that lies inside one of the empty areas in your fractal? What will happen? Will that be the only point outside the fractal? Or maybe the fractal only appears for certain initial points?
Yet again the one didn't fail to impress me This time my mouth was open for 2 mins. Legendary!!! Just wait for me to get a job and I will pay half my salary💚
I'll just note that the systems shown in the video are not chaotic: even though we might casually understand chaos as "random" (for example, in the context of a mob), mathematically speaking, that view is completely incorrect. Chaotic systems are fundmentally deterministic: if you know exactly how a system evolves and know the exact state of the system, you will be able to compute all past and future states of the system. Chaotic behaviour refers to how small changes in initial conditions of the system can produce vastly different behavious as time goes on. By contrast, with the systems shown in this video the next state is chosen at random: you can't predict with 100% certainty what the future states will be. That makes this video a demonstration of how stochastic processes - systems which evolve randomly - can sometimes form structures which are also interesting for other reasons.
Awesome! I think I saw this on numberphile, but this video took it further. Thanks! Btw, it's cool to see stuff done in processing. I've used it a few times, but mainly I just stick to python.
Im calling you out on that triangle. If you drew a midpoint from a point to any random vertex it would pretty unlikely to be so close to the middle of an edge unless that point is in the corner
Me putting a point directly in the center: *Reality can be whatever I want*
Okay, but seriously
What happens if you put a point in the middle?
@Sai Sasank thanks, just watched it, I actually understand the phenomenon alot better now
since it's technically forming a one dimensional shape, it's pretty much impossible to not put the dot in one of the blank areas, since the points have zero length and width.
@Sai Sasank link?
@@BakedAlaskaTM They're not one dimensional, just more like 1.3 dimensional or like that. You can understand that with areas, if you will try a square and a line, i can give you link to one video about that.
The Legend of Fractal - Breath of the Chaos
ha
underrated comment since the last 2 years
Lol
triforcw
@@123cityperson now 4
Long time ago, I was an 8th grade math teacher. At the end of the year, after all the state testing was done and we were counting down days until summer break, I did a unit on fractals. I spent a couple of lessons teaching my students how to program their TI-83s to graph the Serpinski Triangle. The program is about 12 lines long and uses the algorithm at the start of this video. The program is still available and works on all of the TI-84s.
Oh, that's nice. If you'd like to check out my code it is at the bottom of the description however keep in mind that im new to coding so feel free to share any tips.
Hey! I didn't find your code mentioned in the description...
Maybe you standardized video descriptions and overwrote it?
*Sierpinski
@kurz1000 I bet that in English it is „Sierpinski Triangle", while in Polish "trójkąt Sierpińskiego".
Yes but why?
"Is this a fractal?"
"No, this is Patrick"
Lol
Patrick
Is "Patrick" a trick performed by your father? That would mean that "Matrick" is a trick performed by your mother. Then we have Brotrick and Sistrick (obviously) and, if you have a four-legged pet, we have dotrick.
@@simonmultiverse6349 dotrick = two tricks in 1
tritrick =
Woof.
Furthermore, *WOOOOOF* also bark, bark!
"Oh, just random points, it can't be that intresti-- Wait what?"
I love how it pulls a 64 bits 32 bits 16 bits 8 bits 4 bits 2 BITS 1 BIT HALF BIT *QUARTER BIT* at 1:07
Yeah, cool animation
Can we now say that math is art?
Who ever said the two weren't linked?
It's always been art
Depends on your definition of art. Math is related to art? Yes. It IS art? I don't know. As I said, it depends on your definition of art.
I think “chaos” is interpreted incorrectly here, chaos essentially means *extremely sensitive to initial conditions*: change the initial randomly selected point marginally different from the first attempt and see a completely different pattern emerge. In this case it is more like “randomness”, and is opposite to chaos in that despite any random input conditions will always form a result with order.
Why doesn't the last one have rotational symmetry?
I was surprised by that as well. I tried to check if I gave made any mistakes in my code but everything seemed fine. Let me know if you find the answer:)
Either there's a problem with your code, or your RNG isn't working properly. I did this same thing in Java and the generated shape had rotational symmetry.
yes I guess there was a problem with the code. My bad:(
It was a great video nonetheless, and your new videos are also great! Please continue making more!
thanks for nice words:) I will try to upload whenever I can. Hope this community will keep growing.
0:58 Zelda logo complicated
1:45 snowflake
2:20 summoning a demon
Cool,
A bit of research, putting the first point into proper position and it will become a rotation similar fractal. Right?
Btw. I came from *3b1b featured creators #1* and I'm happy I have. Your videos are showing pure beauty of math!
MIMIK 100th like
It’s an error in the code
I have a Guide Voodo, and imma throw it to the lava
@@ragnarock1008 Andrew the Guide was slain.
Wall of Flesh has awoken!
@@haxel96 *MIMIK the guide
You missed out on the fern one
Its really beautiful, a perfect fern just from chaos
Param Rathour ya i was gonna make a separate video about it
Think Twice I would be waiting for that.
I like your way of explaining visually.
We love you Think twice! Thank you for creating this iteration animation!
I just woke up and I am not ready for this. I will come back when I am actually awake
legends say he's still waking up to this day
When you are just having fun with shapes but end up summoning a demon
What you are describing here is an Iterative Function System, more specifically the "fractal flame algorithm", if you google that there is a paper as the second result. The first triangle algorithm you describe is the first one described in the paper. The paper goes on to describe techniques on how to improve the fidelity of the images generated (which can become very vivid and intricate!).
These are used by programs such as Apophysis(7x) or Fractorium (which is a gpu based implementation, which runs many many times faster on basically any computer with a graphics card). For people interested in this, I highly recommend reading the paper and then trying the programs out, maybe looking at more informal tutorials as well.
ty!
The title deserved a long ponder and a like STRAIGHTAWAY
After all that I have learnt about fractals and their formation; (fixed initial condition and a fixed algorithm put on loop) the video title intrigued me beyond words. This concept further pushes us from our understanding of fractals.
If i were an artist, a musician I would buy the rights to the animation of the triangle and use it as a cover, its soooooo satisfying!!
For those wondering why a fractal is produced, think of it like this:
For the large middle black triangle, there is no random vertex and random point in the triangle you could pick such that the midpoint lies in that triangle. So, the random movement of the point will never land there.
For the three smaller triangles, the only way for the midpoint to land there is for the starting point to be in the middle black triangle; however, as said before, the point never lands there, so the point never lands in these three triangles either.
And then for the nine yet smaller triangles, their starting point would have to be in one of those three smaller triangles, and so on.
ohh omg huge thanks for the explanation !
so for the midpoint to land in the middle black triangle initially, a random point must be outside the triangle (and that's not the case here)
and this would lead to the approach that our 3-sided triangle shown is adjacent to 3 larger black triangles outside on the screen
2:26 is this a fractal?
No,this is Patrick
I am thoroughly terrified yet incredibly shocked at the same time
why pentagon does not generate a symmetrical figure ? initial condition ?
jr tao i messed up the code, sorry
its strange ! github.com/appleminis/PolygonDreamcatcher
the rule was that the same vertex can't be chosen two times. Or the neighboring vertices can't be chosen. I can't remember from the top of my head right now.
random walk what iam looking hehe
mine don't break symmetry, i will try to understand something, thank you twice ;)
Watching a one hour ad on a 2 minute video lets gooooooooooooooo
I have done this simulation and created Sierpinski triangle images. I've also created a Sierpinski triangle using another algorithm, and I know a third algorithm.
These are cool.
I was obsessed with fractals a few years ago
mathematicians: *put together an elegant closed system that works beautifully in creating an image that infinitely repeats itself over and over, evolving the world of mathematics and our understanding of it*
me at 2:20 : hehe patrick
i believe this concept sparked a notion in my mind, that... this is one of the ways the Cosmos has to create reality, like a rule* that particles and atoms arrangement , a building block of the physical realm can never be in the same spot twice... a quick example, the snow crystals, but reality's matrix is 6 triangles facing each other or hexagonally based... 🤔
Nice! Good clean idea, well presented.
Looooove your choice of music. Will be looking forward to hear your own music as background, would be cool ❤️
thanks Lucy :) I'll try to write my own song
hope you feel better soon x
I love this chaos game because I can't code, but these are so simple operations you could run it in MS Excel or any other spreadsheet app.
nice alternative
Desmos too?
This place NEEDS more views, you are awesome!
Amazing, this man deserves more people supporting on Patreon!
Thank you, really appreciate your support.
@@ThinkTwiceLtu I raised from one dollar to two is not much but I can't afford a lot, is just you, Veritasium, 3Blue1Brown, Science Asylum and Eugene Khutoryansky.
So you are one of my top five!
I'm a physics teacher in Portugal.
@@jlpsinde No worries, I appreciate any kind of support whether it's monetary or not. I am happy that you enjoy my videos it keeps me even more motivated to create more high-quality content. Thanks a lot:)
Absolutely magnificent I've been working on this Serpinski triangle and I never imagined such a thing
This is one of the best vídeos that i ever seen
The Pentagon one looks like an Evil Version of Patrick star
THIS CONCEPT ITSELF IS TOO AWESOME SO AS TO DESERVE A MILLION VIEWS.
The first one is called sierpínski’s triangle and it’s very cool
doing this on 3d, in a tetrahedron, will actually result in the 3d version of the sierpinski triangle which is the sierpinski tetrahedron
Cool. Mathematically makes sense, but awesome to see it in action
No way! It's absolutely fascinating! Thanks for sharing.
on the triangle, what if you put the first point in the center of the triangle? would that ruin the fractal?
no
No it's somehow manage to get its shape
It's interesting that if you ran infinite cuts, there would basically be straight lines from the corners to the center, except for an infinitely small point in the very corner of the triangle. The middle points on the edges of the blue triangle create the midpoint on the edges of the cut out triangles, as the midpoint of the edge midpoint and vertices create triangles.
@@aidenwallin3523 fddd ddo dddo did did didnt 😮😂do Z
The math with the triangles came out perfectly matching what our universe probably would have done. The list of dots per size range from 1XXL to 3XL to 9L to 27M to 81S. To see how 9 plays a major part in our universe, check out Marko Rodin; or take the 1-9 multiplication table and reduce all the numbers through addition, for example 10=1+0=1, 12=1+2=3, 14=1+4=5 ect. This produces what I'm dubbing the Layman's Fingerprint of God because you can see how 9 exerts its dominance over it all. If you add it all together you get 459 or 4+5+9=18=1+8=9 and how it is surrounded by 9 and has 9 running though it. Making 9 very similar to our description of God being one who is equal to it all, yet outside of it all, yet running through it all.
The first triangle is very interesting.
If you look at the pascall triangle. And always draw a dot for an odd number than you will get the exact same triangle pattern.
Math ist beautifull
this is the best thing to watch when sleep deprived
This is the scariest video of 2018! :o
Everybody gangsta until he makes Mandelbrot's set with this
"Total chaos" lmaoooo. The amount of misconception in the layman is just absurd.
Your work is brilliant. It's so good that I even let the ads finish just to support you. And, yes, I'll hit up Patreon
Good work.
Really appreciate your support~
Inspired to program these examples in Mathematica CDF, thx
Woah nice Ultra Triforce!
I love your animations!!!
thank you:)
2:20 I don't know what that fractal is called so I'm going to call it the serpenski rocket
Numberphile made a video on the same topic too. All those who liked this video should check that too. Just type in "Chaos Game Numberphile" on your UA-cam search and you should find it.
Link's been hallucinating.
You need more Subs!!!!
appreciate your support:)
I completely agree with this!
Interesting!
The first was sum good Zelda's lore shit
Wonderful!
I absolutely love your videos!
glad to hear that! :)
Reality cannot be whatever you want because other people have different ideas of what is the center . The relation between your Center and other centers is what makes "reality"
Why is the pentagon one not rotational symmetrical? Why is the bottom side the only one that fills?
Randomness is the name we give to the ocean of unknown.
Nightmare patric wants a hug
Nice! Have you tried to use an initial point that lies inside one of the empty areas in your fractal? What will happen? Will that be the only point outside the fractal? Or maybe the fractal only appears for certain initial points?
beautiful
OH MY GOD WHAT?!
I *never* knew that
Nice change of music!
cheers
Yet again the one didn't fail to impress me
This time my mouth was open for 2 mins.
Legendary!!! Just wait for me to get a job and I will pay half my salary💚
really appreciate your comments. thank you for the support:)
Your videos are amazingly exciting for me.
I could never imagine Maths could be so fun.
Thank you.
Good Stuff Man!
it's not exactly emerging from total chaos, since there are rules guiding where dots get placed, but nonetheless this is fascinating.
Really Really good vids! As a sience teacher this is gold! Thank you!!
Btw Also came through 3B1B...
I'll just note that the systems shown in the video are not chaotic: even though we might casually understand chaos as "random" (for example, in the context of a mob), mathematically speaking, that view is completely incorrect. Chaotic systems are fundmentally deterministic: if you know exactly how a system evolves and know the exact state of the system, you will be able to compute all past and future states of the system. Chaotic behaviour refers to how small changes in initial conditions of the system can produce vastly different behavious as time goes on. By contrast, with the systems shown in this video the next state is chosen at random: you can't predict with 100% certainty what the future states will be. That makes this video a demonstration of how stochastic processes - systems which evolve randomly - can sometimes form structures which are also interesting for other reasons.
2:22 fancy patrick
Incredible! thank you! please keep it up!
thanks a lot~
The star-like shape is supposed to be symmetrical
Pretty cool
Awesome! I think I saw this on numberphile, but this video took it further. Thanks!
Btw, it's cool to see stuff done in processing. I've used it a few times, but mainly I just stick to python.
Thank you:) I haven't really tried coding in python so I don't really know the difference.
I did it in p5.js so it was easier to share with others and edit on any PC
Very good
Chaos is an illusion.
this channel still doesn’t have 10billion subscribers? tf
Order is chaos at its most chaotic point.
Love the video, hope you're feeling alright
thank you~
amazing
Excelente video! Good job, keep up with the good work, please!
Thanks a lot:)
that's cool
Chaos, but it quickly creates a rule that iterates. Iteration is the beginning of a fractal.
Im calling you out on that triangle. If you drew a midpoint from a point to any random vertex it would pretty unlikely to be so close to the middle of an edge unless that point is in the corner
F to everyone that saw this once, thought it was cool, then never found it again
*THE TRIFORCEEEEEEEES*
0:53 wow look it’s the sirpenskiri triangle
poop
How do you make this animations? It’s awesome :)
Julio Toboso García he said in the description that he used a programming environnement called Processing, so I gess he programmed it himself
Processing is a really powerful visualization language.
Look for The Coding Train on UA-cam, you will find a lot of tutorials.
@@mathieugouttenoire9665 please remind me in a yearrr
processing.org
@@nahfid2003 it’s been 7 months, why did you want reminding in a year?
would love to see a more finely-grained simulation, but this is still very cool nonetheless
I'll upload it to patreon just for you :)
Out of chaos...
Comes order.
This reminds me of the Jurassic Park book
If you put the next point 2/3 of the way to a random vertex, I think you could use a square to generate 2D cantor dust, with no extra rules necessary.
Hausdorff dimension = - log( number of vertices ) / log( 1 - fraction of distance to chosen vertex point is moved )
You couldn’t live with your own failures, and where did that bring you?
*Sierpinski Triangle*
Back to me.
*the ultimate triforce*
dam. i love it
1000th like!