How I made my own Fractal

  Рет қаралды 77,415

Kuvina Saydaki

Kuvina Saydaki

Күн бұрын

In this video I explain how I came up with my own fractal and also how you can do the same.
Music used: 1812 overture and waltz of the flowers both by Tchaikovsky
chapters:
0:00 intro
0:46 how it works
2:29 Level 4
3:43 other levels
8:20 shadow versions
9:12 bi versions
10:58 shadow skew
12:02 psychedelic versions
13:04 shadow psych
13:43 product versions
16:27 outro

Пікірлер: 334
@schizoframia4874
@schizoframia4874 2 жыл бұрын
You didn’t make one fractal, you’ve made infinite families of fractals.
@readtruth6670
@readtruth6670 Жыл бұрын
Are fractals made or just discovered?
@BS-bd4xo
@BS-bd4xo Жыл бұрын
A fractal?!
@JackSalzman
@JackSalzman Жыл бұрын
A fractal of fractals lol
@Siwdvi
@Siwdvi 9 ай бұрын
​@@JackSalzmanjust a regular fractal
@homelikebrick42
@homelikebrick42 9 ай бұрын
@@readtruth6670 you could ask that about anything in math
@jAujAl1
@jAujAl1 9 ай бұрын
I remember being obsessed with Conway's game of life and trying to make a 1D version of it on a spreadsheet (with time progressing on the vertical axis). In doing so I accidentally discovered rule 126 (if three adjacent cells have a sum of 1 or 2, then the center cell underneath has a value of 1, otherwise it has a value of 0) and created a Sierpinski triangle, which pleased me greatly. I assume it's a specific case of your class of fractals, and follows the same rule as your n=3 instance at 4:17. For those wanting to replicate it, in LibreOffice Calc, you can paste the formula =IF(OR(SUM(A1:C1)=1,SUM(A1:C1)=2),1,0) in the B2 cell and drag the formula across the whole sheet (don't drag it on the col A and row 1 though, leave those empty), and write 1 in any cell in the first row. It's particularly fun to see the patterns it builds when you have more than one full cell in your initial conditions.
@angelsachse9610
@angelsachse9610 9 ай бұрын
Very smart idea! I had a similar obsession a few years ago.
@40watt53
@40watt53 3 ай бұрын
now i gotta see conways game of life with time on the third axis
@digitsstuff6521
@digitsstuff6521 Жыл бұрын
That's pretty interesting, this is like a fractal that you can infinitely zoom out on instead of infinitely zooming in on. One thing I've noticed is that the level 2 one is actually just rule 150, the 1D cellular automata, which is "one of the eight additive elementary cellular automata" according to Wolfram and as a result, it's already fairly well studied. Looking at Rule 150 might give more insight to the family itself.
@dylanherrera5395
@dylanherrera5395 3 ай бұрын
not really, thats kinda the same as saying, oh if i copy this triangle down there, and down there, i can zoom out, so the Sierpinski triangle is actually infinitely large and you can zoom out, not in
@PeterNerlich
@PeterNerlich 2 жыл бұрын
This was super interesting! I wonder if that has already investigated before. If not, I'm definitely rooting for the term Kuvina Triangle! You obviously put a lot of work in these videos, and the content is really good. I'm kind of amazed that you put this video out so quickly after the last one *checks channel* 13 days ago. This is severely awesome ^^ All the best to you! Hope you have fun, and don't overwork yourself.
@Kuvina
@Kuvina 2 жыл бұрын
thank you! It's really considerate of you to be concerned whether I'm overworking myself, and I assure you I'm not. I do these for fun, and I have a lot more time for that now that it's summer break and I finished my 3rd year of college.
@Tarou9000
@Tarou9000 11 ай бұрын
​​@@Kuvina don't know if you've figured this out but i found a connection between these fractals and John Conway's game of life. As you may know John Conway's game of life or "Life" for short is a case of celular automaton a.k.a. a game of zero players, wich means once the initial state is set; the "game" plays itself. The thing is that the Sierpinski Triangle can also be generated with the simple rules that make celular automaton so special, the difference is that while life takes place in a 2 dimensional grid, the Sierpinski Triangle (or any of your versions) in a 1 dimensional array, but each generation is plotted in each row of the triangles, unlike with like, in wich you usually just see one iteration at a time, here's what I mean: To start the Sierpinski Triangle start with an infinite array of black squares with only one being white: ⬜⬛⬛⬛⬛⬛⬛⬛ This is the first iteration/row of the Sierpinski triangle, for the next iteration each square checks if the square above and the one above to the left have different states, giving arise to the next generation: ⬜⬜⬛⬛⬛⬛⬛⬛ This operation of checking if two states are different is also known as the bitwise xor operation, a.k.a. the summation mod 2, wich also gives arise to the pascal triangle. Iterating this process over and over again, such as done in celular automaton finally generates the Sierpinski Triangle: ⬜⬛⬛⬛⬛⬛⬛⬛ ⬜⬜⬛⬛⬛⬛⬛⬛ ⬜⬛⬜⬛⬛⬛⬛⬛ ⬜⬜⬜⬜⬛⬛⬛⬛ ⬜⬛⬛⬛⬜⬛⬛⬛ ⬜⬜⬛⬛⬜⬜⬛⬛ ⬜⬛⬜⬛⬜⬛⬜⬛ ⬜⬜⬜⬜⬜⬜⬜⬜ Each of your own versions can also be expressed as a celular automaton with its unique rules, with the modulus being the ammount of different states/colors.
@rojnx9
@rojnx9 9 ай бұрын
@@Tarou9000 For anyone else reading these one dimensional cellular automata are called the Elementary Cellular Automata (ECA), and there is a lot of research done into these. The most famous one is called rule 22 (from the binary number that defines its ruleset) which creates the Sierpinski triangle.
@Dyanosis
@Dyanosis 9 ай бұрын
Not sure why this needs a specific name when it's really the combination of the Pascal's Triangle and the Sierpinski Triangle, which are both not new.
@40watt53
@40watt53 3 ай бұрын
@@Tarou9000 holy shit images in youtube comments
@brighamhellewell6479
@brighamhellewell6479 9 ай бұрын
I invented with same fractal about 8 years ago a different method. Its cool to find someone explore and re-discover/ also found this fractal
@vindi167
@vindi167 8 ай бұрын
oh!
@X22GJP
@X22GJP 3 ай бұрын
You invented eh?
@orrinpants
@orrinpants 3 ай бұрын
ah yes, *you invented with* same fractal
@40watt53
@40watt53 3 ай бұрын
@@orrinpants yall are ripping into this person damn 😭
@334vector
@334vector 9 ай бұрын
Heya, I came up with this 2 years ago! Cool that someone else thought of it independently, though I took it a bit farther in a different direction. This isn't really a 2d fractal, or well it is, but it can be thought of as having 1 spacial dimension and 1 temporal. I use 2 spacial and a time dimension. There is a defined list of "neighbors", and between each update each cell will add itself to all its neighbors. Some especially pretty ones are the neighbors being knights moves, and having it reach in all 8 directions!
@bennett2201
@bennett2201 2 жыл бұрын
i have a weakness for these kinds of explorations. amazing video kuvina!
@versenova5531
@versenova5531 2 жыл бұрын
I saw you in 3blue1brown's comment section, not gonna lie I dont regret coming here.
@Gizmote
@Gizmote Жыл бұрын
The basis for this fractal is the trinomial triangle, so named because the terms of each row correspond to the coefficients of expansions of trinomial expressions. I independently discovered this when trying to figure out how to describe the outputs of the probability distribution of rolling 3 dice, then found there's already a body of research on it, from Euler to Wikipedia! I love your variations of it, and I particularly like how the fractal for n = 127 looks like it has cool sunglasses on, and how product 48 makes the pan flag. You might also be interested in Rule 90 and other related 1D cellular cellular automata. I spent a while nerding out about these.
@TheRookieWarrior
@TheRookieWarrior 9 ай бұрын
pan flag?
@TheRookieWarrior
@TheRookieWarrior 9 ай бұрын
you high?
@Gizmote
@Gizmote 9 ай бұрын
@@TheRookieWarrior look up “pan flag”
@slyar
@slyar 9 ай бұрын
the wow jumpscare
@TunaBear64
@TunaBear64 9 ай бұрын
Spooky, we are on sync, I did the exact same 6 months ago. But a Trinomial Triangle is for when you roll 3-sided dice. If you want to get the odds for regular dice, you need a Sextic Triangle
@Its-Tim
@Its-Tim 9 ай бұрын
Since each composite triangle is a composition of its factors, you could theoretically use this for encryption
@pas-giaw6055
@pas-giaw6055 3 ай бұрын
Or rather decryption
@aslpuppy1026
@aslpuppy1026 2 жыл бұрын
These are so cool! I also really love the lesson at the end of, if you have something, tweak and change it to see what happens. I still remember sometimes where I was trying to solve something, and that tip helped so much. Also to answer your question: My favorite is Product 30
@gallium-gonzollium
@gallium-gonzollium Жыл бұрын
I found this while watching TV. I do not regret it. Very underrated and well done!
@sonicwaveinfinitymiddwelle8555
@sonicwaveinfinitymiddwelle8555 Жыл бұрын
7:55 cool glasses tho 13:14 THE GAY SEED
@JackSalzman
@JackSalzman Жыл бұрын
I fully support your documentary style KZbin content! I just discovered this channel yesterday with the spectral lines video, and immediately subscribed. ❤ Keep up the good work and amazing content!
@Kuvina
@Kuvina 9 ай бұрын
Don't forget to check out my new video on the almost platonic solids! kzbin.info/www/bejne/lYLbo557prSlja8 Also, the name I would now propose is the trinomial fractal.
@bluetintedchromee3881
@bluetintedchromee3881 9 ай бұрын
YOOOOOO 34 MINUTES AGO
@Luca_5425
@Luca_5425 9 ай бұрын
What only a few minutes ago poggers
@microwave856
@microwave856 9 ай бұрын
he the
@killaship
@killaship 9 ай бұрын
For everyone going off about how they found the video right after the person who made it commented: It's probably because the video's been up for a year, but just now hit the YT algorithm and is being shown to a lot more people, and the channel owner noticed this and made a comment. (also kuvina if you see this, this is a really great video)
@haipingcao2212
@haipingcao2212 9 ай бұрын
​@@bluetintedchromee3881 ꙡ́ѯ̑ҁир҄ѳꙡйцаицп [1[1∆2]∆⁵3Ꙙ²3]
@soleildj1572
@soleildj1572 9 ай бұрын
This is criminally underrated, at least in my opinion! This is so cool and experimental, and I just love it. I would like to know how you generated these so I can play around with similar things. Keep doing what you are doing, and I hope you get more love!
@FarceeTheFire
@FarceeTheFire 9 ай бұрын
Woahhhhh this is so cool, glad I found your channel with this video!
@usr_name3980
@usr_name3980 2 жыл бұрын
I liked level 3 and any variations on it :)
@victorfunnyman
@victorfunnyman 9 ай бұрын
a lot of the prime fractals there look like they could make for great noise generation! Like especially when you look at one corresponding to 107, you can already see how it is incredibly irregular, looking like some sort of fog! I like it very cool
@_cryptr_5104
@_cryptr_5104 9 ай бұрын
bro great job!! this is legitimately so underrated.
@blauwzakjecrack
@blauwzakjecrack 4 ай бұрын
This was awesome, thank you for creating this!
@titaniumtomato7247
@titaniumtomato7247 Жыл бұрын
Very cool! I love your presentation and imagination, also this reminds me of the elementary automata
@yfidalv
@yfidalv 9 ай бұрын
These types of things are my favorite applications/uses of math where the creativity and exploration really shines, awesome concept and great variations
@TheIlike2playminecra
@TheIlike2playminecra 9 ай бұрын
Im curious how you generated the images used. I certainly may be able to make my own code to do something similar, but if the code used for this video was available it'd make it a lot easier for people to implement their own variations!
@WideJupiter_offical
@WideJupiter_offical 11 күн бұрын
All of the multiples of 17 are beautiful
@c_sea1n
@c_sea1n 3 ай бұрын
level 5 and 7 are beautiful but my favorite one has to be 29 127 looks like a static triangle with triangle sunglasses
@bred4ev3r
@bred4ev3r 5 ай бұрын
The fact that there are distinct triangles mage out of squares is amazing
@orrinpants
@orrinpants 3 ай бұрын
ah yes, *mage* of squares
@40watt53
@40watt53 3 ай бұрын
wait till you hear about pixels
@Cloiss_
@Cloiss_ 2 жыл бұрын
Hmm, now wondering about the possibility of Shadow Product variations, since division is a defined operation for the integers mod p. Sadly I don't think there's an intuitive rule that works for non-prime bases, though. I do love how composite numbers literally show up as a *composite* of their factors. Amazing video
@UraniumLeaf
@UraniumLeaf 9 ай бұрын
You forgot to mention how product 10 is an arrow pointing upwards
@Z_Inspector
@Z_Inspector 9 ай бұрын
The psychedelic shadow fractals are just the worst rainbow generator
@alexandrubusuioc6800
@alexandrubusuioc6800 5 ай бұрын
I made the program myself and set the default value from 0 to 1 and made the "seed" 2 instead of 1. This makes the product versions without the 1 added work! Fun fact: Natural product level 3 looks identical to normal level 2!
@fluffycritter
@fluffycritter 9 ай бұрын
The Kuvina triangle fractal looks very similar to the IFS version of the Sierpinski triangle but with an additional choice point at the center of the base of the triangle, which is also a projection of the 3D Sierpinski pyramid. The generated family appears to be an extension of the way that 1D cellular automata have been shared for quite some time.
@ouroya
@ouroya 9 ай бұрын
really enjoyed the video! the pretty colors are nice on my deliriously sleep-deprived brain
@Katniss218
@Katniss218 8 ай бұрын
This is sooo cool!
@fanrco766
@fanrco766 9 ай бұрын
I remember discovering these about 8 years ago when i was 16, there was a Processing IDE for android and I used to mess around with little code snippets. I wanted to see what pascals triangle would look like mod 2, and was surprised to come across the familiar sirpinsky triangle, tried it out with different moduli and found they made amazing shapes. I looked it up though and found that many had discovered this before me. oh well!
@BS-bd4xo
@BS-bd4xo Жыл бұрын
Such awesome content! You make the doodles I draw, but wish I could program.
@zuthalsoraniz6764
@zuthalsoraniz6764 9 ай бұрын
The product 10 one looks like it could an alien spaceship in some DOS-era video game shooting a laser downwards
@spectrumofinsights
@spectrumofinsights 11 ай бұрын
A great video! You commented on a fractal post I made on Twitter; that’s how I found this. 😊
@user-qn9uu3gm9v
@user-qn9uu3gm9v 9 ай бұрын
This is so cool!!! I’m very curious, which number generations of the product variation produce solid color backgrounds??
@diegoadriandanielarce2211
@diegoadriandanielarce2211 6 ай бұрын
You did not just make a fractal you made a whole family for that fractal
@DaemonWorx
@DaemonWorx 9 ай бұрын
This is very similar to if you perform the mod (2) on the pascal triangle you get the Serpinksy triangle. Blew my mind as a kid
@somerandomdragon558
@somerandomdragon558 9 ай бұрын
This brings me to a great idea for a prime factorization algorithm. Generate this fractal and compare it to all fractals of the number below! Now thats peak efficiency.
@SwearJar1
@SwearJar1 8 ай бұрын
This is so cool.
@charlieborchardt2066
@charlieborchardt2066 9 ай бұрын
My favorite was definitely product! 😍
@sawyerwest3990
@sawyerwest3990 2 жыл бұрын
@0:18 Fractals are not necessarily self similar. Source: kzbin.info/www/bejne/nXOcn2Wdfdh7hJY @2:33 beautiful! @6:34 Your audio recording quality went way up at this point. Very nice video! I saw your comment on the 3B1B summer of math exposition and I decided to check your videos out. Good luck in this years competition!
@Kuvina
@Kuvina 2 жыл бұрын
Thank you for your compliments! I'm fully aware that fractals aren't necessarily self similar, but I just wanted a simple definition that I could get through quickly, so that's what I went with. I made sure to say that it's only a *colloquial* definition, ie. one that is commonly used but not necessarily correct. But I do kindov regret not making it clear enough, because I really don't want to spread false information
@bagelnine9
@bagelnine9 9 ай бұрын
(16:09) Fun fact: I once saw the number 103 in a dream. It was the age rating of a movie that my parents were watching on Netflix.
@duncanliew5869
@duncanliew5869 9 ай бұрын
product 10 looks like an octopus driving a car product 16 looks like people in a boat paddling
@impossibear314
@impossibear314 4 ай бұрын
after this video, my keyboard floated to unknown lands
@martensamulowitz347
@martensamulowitz347 10 ай бұрын
this is really cool
@Chitose_
@Chitose_ 26 күн бұрын
now that is awesome
@TojosWizzyWorld
@TojosWizzyWorld 3 ай бұрын
13:20 makes sense, the first layer is all zeroes, so a, b, c are same. So we can represent them by x. So we have x-x+x+1, or 2x-x+1. This results in x+1, meaning that every row is 1 more then the earlier row, causing the rainbow. Isn’t math beautiful sometimes?
@elnico5623
@elnico5623 5 ай бұрын
I find it interesting how our intuitions differ, you seemed somewhat surprised by the results, while i expected them from the formulas you used, they're all very interesting, specially the bi ones
@non-bin
@non-bin 9 ай бұрын
I'd love to play with the code, have you published it anywhere? I'd like to see the standard one at n= a high prime, at high resolution, so see if there's any pattern to the colors of the body
@humanperson2375
@humanperson2375 9 ай бұрын
What happens if you add 1 for each row? Or if you add the difference between the background and 0, so that the background is always black, what happens to the triangle?
@josephmellor7641
@josephmellor7641 6 ай бұрын
I've done a lot of work on the p = 5 version with rows with a finite width where it wraps around, so if you have a row with m elements, the rule for x[n + 1] is x[n + 1][k] = (x_n[(k - 1 + m) % m] + x_n[k] + x_n[(k + 1) % m]) % p In my case, I wanted to study questions like "How long does it go before it repeats?" and "How long is the delay before it gets into a cycle?" It turns out you can study both of those by converting the rule to a matrix and then finding the generalized eigenvalues in some finite field of characteristic p. The problem with this approach is that it only works if p is prime, but this video gave me an idea. As you've pointed out, though, you can make the composite triangles out of the triangles made of their prime factors. I can then use this insight to study the p = 6 case by studying the p = 2 and the p = 3 case and then combining their results with the Chinese Remainder Theorem. This should definitely work as long as p can be factored into unique primes, but it might get stuck on cases like p = 4. I'll have to think more about it. Anyway, I'm definitely subscribing to this channel. Keep making cool stuff.
@Kuvina
@Kuvina 6 ай бұрын
That's awesome!
@Slicethemic
@Slicethemic 9 ай бұрын
pchycedelic 107 gotta be one of my favorites.
@vindi167
@vindi167 8 ай бұрын
this is not just one fractal, but an entire family! the "Kuvina Set" i guess
@gcewing
@gcewing 9 ай бұрын
The formula for the product version looks similar to things which are often used as pseudorandom number generators, and the patterns exhibit some of the behaviours found there. For some moduli it falls into a repeating pattern, for others it goes through all possible state values in a randomish way. Except here there are infinitely many states, so some of the patterns will continue to grow forever without repeating.
@gcewing
@gcewing 9 ай бұрын
I discovered the prime/composite thing myself a while ago while playing with Pascal's triangle mod n. If you plot with just two colours for zero/nonzero the pattern for primes shows up very clearly. In simple cases you can look at a pattern and kind of see its prime factors. I wondered briefly if I'd discovered a useful algorithm for identifying primes, but it turns out to be just as much work as doing it one of the traditional ways. :-(
@Music7Ada
@Music7Ada 8 ай бұрын
Something about the regular 5 felt very festive to me.
@valentinpy409
@valentinpy409 9 ай бұрын
7:55 don't fool us level 127 is just a triangle with sunglasses
@amber_amber101
@amber_amber101 9 ай бұрын
That's definitely new. Also it's similar to 1d game of life, I recommend checking that one out some day
@michlop452
@michlop452 9 ай бұрын
I'd really like to see the product versions with more generations. The seemingly random colors inside the triangles seem to have some sort of pattern, but the image is too small to show them fully.
@AylaKD
@AylaKD 9 ай бұрын
if you do the one above, the two on the edge, and the two on the left and right of them are included, what happens?
@zobososhizion6478
@zobososhizion6478 9 ай бұрын
what happens when the start conditions are randomized during the fractal creation?
@hongkonger885
@hongkonger885 9 ай бұрын
I love how psychedelic 13 is just Germany on r/place
@pacattack2586
@pacattack2586 9 ай бұрын
I'm a bit sad that we didn't get to see product fractal 25 does it still die out random point? Does it have random other triangles? what happens there
@orisphera
@orisphera 9 ай бұрын
I've independently found the level 2 one a long time ago (not sure if that was before or after the video was published)
@dev_sda
@dev_sda 9 ай бұрын
Product is the most variation I like it the most cause it’s produce actual unique ruglar patterns I mean tge patterns it produces are coherent and great in a special way
@luckydancz4960
@luckydancz4960 9 ай бұрын
what if the product version only multiplied non-zero numbers and if there was nothing left to multiply, then it's just zero 🤔
@NullCyan
@NullCyan 3 ай бұрын
awesome
@Bartexz
@Bartexz Ай бұрын
@Kuvina Saydaki my fav number is 4 too
@Bumble._.Jellybottom
@Bumble._.Jellybottom 9 ай бұрын
omg the one with the full rainbow
@MusicEngineeer
@MusicEngineeer Ай бұрын
What about adding the two left and right numbers and multiplying by the one in the middle, i.e. (a+c)*b? You might be interested in looking into Stephen Wolfram's book "A New Kind of Science" - he explores similar ideas there (the book title is a bit over the top, though - in my humble opinion).
@dolamskudoiski306
@dolamskudoiski306 9 ай бұрын
multiply the sides, add the middle?
@timanderson5717
@timanderson5717 7 ай бұрын
how would the product version work if the blank field was 1 instead of 0 and the starting number was 2?
@CyberCat3O
@CyberCat3O 9 ай бұрын
I wonder if you could do this without the modulo operator at all (the same as mod infinity), it would contain every version of this fractal in the same way as composite numbers. if so, were one able to see all the infinite wavelengths of light, and of course generated it with an infinite or at least much larger resolution, it would be possible to see the entire fractal all at once in its full glory.
@NikodAnimations
@NikodAnimations 2 ай бұрын
How about shadow product? Multiply a and c and divide by b? Or product skew? Or shadow product skew?
@angelsachse9610
@angelsachse9610 9 ай бұрын
Cool, you rediscovered cellular automata! Even with multiple states, not just binary. You should test if you can create one that exhibits Class 4 behavior like Rule 110! Perhaps you can see some glider behavior!
@42f87d89
@42f87d89 9 ай бұрын
The Kuvina triangle is equivalent to a history diagram (I'm not sure what the proper technical name is) of a 4 color one dimensional cellular automaton. I can't be bothered to work out the rule number though.
@suhedheglobdefne6739
@suhedheglobdefne6739 10 ай бұрын
Product 10. Nice arrow.
@noblearmy567
@noblearmy567 9 ай бұрын
cool also my fav was shadow psychadelic
@Cl_over
@Cl_over 9 ай бұрын
It's also really cool if you use decimal numbers above 1 (1.1 is really cool)
@Lex_Araden
@Lex_Araden 9 ай бұрын
Amazing. No favourites, awesome
@MeYou-Sick
@MeYou-Sick 12 күн бұрын
Could you let me know, how you made them? I mean the simulations. I would like to recreate them
@Just_Your_Average_Goose
@Just_Your_Average_Goose 9 ай бұрын
idea: basically take the original fractal with the module factor but n decides the module AND the amount of rows a number checks.
@masela01
@masela01 10 ай бұрын
I love the psychedelic ones!
@benrockstar574
@benrockstar574 9 ай бұрын
What would happen with (a plus 1 )times (b plus 1 )times( c plus 1 ) And start with only one 1 at the top
@ClaramayNivetta
@ClaramayNivetta 6 ай бұрын
it would be cool to have a program where we could mess around with the rules and make our own patterns with this kind of idea :O
@CandidDate
@CandidDate Жыл бұрын
This is how the mind works! Starting with Stephen Wolfram's ideas and running. I wonder if you've seen the equation y=rx(x-1)? It produces chaos after bifurcating. There's a special factor "r" that can model predator prey simulations. I wonder if you could add a spice of randomness to eliminate the mirror down the middle effect? Anyway, great video! Math is all related. So is thought. My work deals with creating AI. There's something called the AI alignment problem. Could an AI be good in all of its decisions? What would make AI "fair and balanced?" Why fractals of course. And symmetry! Like a tree grows, so do thoughts.
@DavidSartor0
@DavidSartor0 Жыл бұрын
Could you elaborate on your thoughts about the AI alignment problem?
@catface_q2123
@catface_q2123 6 ай бұрын
My favorites were the product power of 2, I like how they look lol me a spine.
@RoboticusMusic
@RoboticusMusic 9 ай бұрын
Is the Kyazar channel still up?
@naoufeljalel7140
@naoufeljalel7140 5 ай бұрын
what about x=(a+b+c-1) mod n but you start of with 2? it can be a weird one.
@curiositeperpetuelle8610
@curiositeperpetuelle8610 5 ай бұрын
I hope you'll do a new video with new ideas to add to this family someday ^^ the psychedelic bi versions are missing and I hinted a f(a,b,c) =(a+1).(b+1).(c+1)-1 to "solve the background" of the regular psychedelics
@SnakeSnack
@SnakeSnack 9 ай бұрын
What if we change it to the sponge instead of the triangle?
@DiggyPT
@DiggyPT Жыл бұрын
moral of the story: modulos are f****** awesome!!!!!!!
@bluetintedchromee3881
@bluetintedchromee3881 9 ай бұрын
i would be so happy if you made a website that let us generate these
@kales901
@kales901 5 ай бұрын
what about a bi phychedelic shadow skew?
@theidioticbgilson1466
@theidioticbgilson1466 Жыл бұрын
elementary cellular automata but more ✨fabulous✨
@rotflmaopmpqxyz
@rotflmaopmpqxyz 9 ай бұрын
14:47 wait wait wait product 5 just dies?!?! Why 5? Are there any other primes that eventually just make the entire row the same value but we didn’t get enough rows to see it happen?
The Amazing Math behind Colors!
42:34
Kuvina Saydaki
Рет қаралды 167 М.
Real-life fractal zoom
9:16
Henry Segerman
Рет қаралды 1,1 МЛН
The delivery rescued them
00:52
Mamasoboliha
Рет қаралды 7 МЛН
$10,000 Every Day You Survive In The Wilderness
26:44
MrBeast
Рет қаралды 99 МЛН
Can you guess a shape from its shadows?
9:01
Ben Gobler
Рет қаралды 440 М.
Non-Euclidean Worlds Engine
5:15
CodeParade
Рет қаралды 11 МЛН
The ALMOST Platonic Solids
28:43
Kuvina Saydaki
Рет қаралды 105 М.
Building a Relay-Powered Pi Machine
17:35
The Science Elf
Рет қаралды 248 М.
Lyapunov's Fractal (that Lyapunov knew nothing about) #SoME2
24:42
Fractals are typically not self-similar
21:36
3Blue1Brown
Рет қаралды 3,9 МЛН
Houdini Algorithmic Live #060 - Quadrilateral Remesh
3:53:40
Junichiro Horikawa
Рет қаралды 357 М.
70 is weird
17:05
Kuvina Saydaki
Рет қаралды 86 М.
wyłącznik
0:50
Panele Fotowoltaiczne
Рет қаралды 24 МЛН
Iphone or nokia
0:15
rishton vines😇
Рет қаралды 935 М.
Main filter..
0:15
CikoYt
Рет қаралды 905 М.
What model of phone do you have?
0:16
Hassyl Joon
Рет қаралды 76 М.
Индуктивность и дроссель.
1:00
Hi Dev! – Электроника
Рет қаралды 1,6 МЛН