One second to compute the largest Fibonacci number I can

  Рет қаралды 391,175

Sheafification of G

Sheafification of G

Күн бұрын

Пікірлер
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Wow, this really got a lot of attention... thanks everyone!! I'd normally engage with the comments directly but I'm about as efficient as the naïve Fibonacci algorithm at that sort of thing... since there are some trends in the comments, I figured I'd at least address the most common questions/concerns that I came across: 1. *Runtime of the "linear" algorithm.* I swept the detail under the rug (didn't seem like the right time, but hindsight is far acuity), but it's explained a bit more in the definitely-not-hard-to-find greyed-out paragraph at 10:53. Briefly, the linear algorithm is O(n^2), where n is the *index* of the Fibonacci sequence, and the digit-length of the nth Fibonacci number has O(n) digits thanks to Binet's formula! 2. *Colour palette.* Classic "works on my machine" moment; the colours looked a *lot* better on my computer before it got uploaded to KZbin. Sorry about that! I won't be using the same colour scheme in future videos; lesson learned. You can still read the actual source code at github.com/GSheaf/Fibsonicci 3. *Choice of number base.* Speaking of source code, there are some comments regarding my choice of using base-256 for my big integers. Just to clarify, I only made this restriction when dealing with Fourier transforms, with the justification being that double-precision floats wouldn't be able to handle larger bases. For the other, simpler algorithms, I used larger bases! This is summarised in the README for the source code. Most algorithms use base-2^32 (so that I could cast to 64-bits to do digit-wise products), and the "linear" algorithm uses base-2^64. 4. *Avoiding precision errors.* Many people mentioned the Number-Theoretic Transform as a correction to the FFT that doesn't suffer from the precision error. This would be a natural next step, at the cost of having to figure out a way of getting a sufficiently large prime p that is equal to 1 modulo the sequences being convolved (a headache I didn't want to get into after 25min of video). Alternatively, you can also implement "adjustable fixed-precision floats" to account for this. 5. Binet's formula doesn't render this problem "solved": how do you compute phi^n? 6. Memoisation is *not* a typo, and I'll die on this hill. Anyway, definitely enjoying reading all of the comments here!
@somatia350
@somatia350 4 ай бұрын
Hello! I really like this video, but some of the concepts are beyond what I’ve learned. What would you recommend to first look at to get a greater understanding of the video?
@tolkienfan1972
@tolkienfan1972 4 ай бұрын
@@SheafificationOfG are you sure you can't go bigger than base 256 for the fourier algo? Doubles have 51 bit mantissa's. 256 is 8 bits. Memoisation is correct
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
@somatia350 I think it'll depend on what concepts you want to go in more detail with, but a safe bet is probably The Book on algorithms (I.e., Cormen, Leiserson, Rivest, Stein). Not sure what it says regarding Fourier, but the book is excellent for giving you all the foundations in this kind of stuff, and you can build from there pretty easily.
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
​@tolkienfan1972 The reason for reducing the base to 2^8 is to ensure that the mantissa is large enough to hold the (implicit) *sums* of digits in the underlying convolution. Decreasing the digit size allows for larger sums. If I were to use 16-bit digits, I might see FFT break down after only the 47000th Fibonacci number, based on the same rough calculation in the video (granted this might be too pessimistic of a bound). On the other hand, if I used 4-bit numbers, I would be able to take the computations much further (past the 48 millionth Fibonacci number)... if I could compute that far.
@tolkienfan1972
@tolkienfan1972 4 ай бұрын
@@SheafificationOfG if you add n 16bit (16 to hold the products) numbers you need ceil(16+lg(n)) bits. 51 - 16 is 35. That's about 32 billion limbs. Did I make a mistake?
@karlll3321
@karlll3321 4 ай бұрын
This video is 25 minutes not one second
@landsgevaer
@landsgevaer 4 ай бұрын
Yeah! If I had 1 second I would shout 89, not turn on a computer and start making a video.
@kingki1953
@kingki1953 4 ай бұрын
The main problem is to find the best algorithm for calculate fibonacci number in one second
@PC_Simo
@PC_Simo 4 ай бұрын
@thekatdev6007 Savantism. That’s, where it’s at.
@tavinyo2
@tavinyo2 4 ай бұрын
Lies
@toricon8070
@toricon8070 4 ай бұрын
it's in slow motion so we can follow along
@Ganerrr
@Ganerrr 3 ай бұрын
diamond medalist: storing the number in code and printing it
@justinliu7788
@justinliu7788 Ай бұрын
Ah yes it got optimized out by the programmer
@xxsuper99xx
@xxsuper99xx 28 күн бұрын
everything is a lookup table if you optimize long enough
@enderfun2852
@enderfun2852 4 ай бұрын
Let's all just appreciate that this man used DFT, FFT, Binet formula, Karatsuba's multiplication, Linear algebra, Complex numbers and Galois groups just to compute some Fibonacci numbers, whereas SIMD just left the chat
@asdfghyter
@asdfghyter 4 ай бұрын
SIMD can only give a constant factor improvement though
@pumpkinhead002
@pumpkinhead002 4 ай бұрын
​@@asdfghyterTrue, but that doesn't mean it's going to be slower. The problem statement is how many can be calculated in 1 second, not which algorithm had the most efficient computation logic. Although that is what the video is about. Technically a SIMD or GPU solution could be faster even with a naïve implementation
@asdfghyter
@asdfghyter 3 ай бұрын
@@pumpkinhead002 not with the most naive solution, no. that would be very impossible, since it's exponential. with any of the better algorithms it could indeed be faster though, as long as it's at least polynomial some of the last steps only gave improvements by a factor, so those might very well be surpassed by a SIMD or GPU implementation though, it's not completely obvious how to parallelize this problem, as the key part of the definition is a recursion. the main component that is parallel is the basic arithmetic operations, which are basically inherently SIMD already, but SIMD might be used to make bigint implementations faster. (and of course the matrix operations, which i forgot when first writing this)
@mtarek2005
@mtarek2005 3 ай бұрын
​@@pumpkinhead002I'd love to see gpu parallelized multiplication
@BonktYT
@BonktYT 2 ай бұрын
@@asdfghyter The fact that the most naive solutions are exponential still does not mean that they can't be faster during one second after a constant speedup from SIMD, it is in this case unlikely given the large problem size, but not impossible. You don't understand asymptotical performance measures.
@michaelearnest1983
@michaelearnest1983 4 ай бұрын
This video is extremely refreshing! I've seen people claim that you can compute Fibonacci numbers in O(log n) time, because they saying that arithmetic operations take constant time, and there are only O(log n) operations. This approximation is often useful, but in the Fibonacci case, you cannot discount the added cost of adding/multiplying large integers. The way you showed the actual runtime increasing with graphs really sells this point.
@Avighna
@Avighna 4 ай бұрын
I think people are generally talking about the n-th Fibonacci number modulo some integer when they say that.
@palmberry5576
@palmberry5576 4 ай бұрын
⁠​⁠​⁠@@Avighnawhich is basically useless considering Fibonacci has linear memory requirements. Its similar in nature to the fallacy of O(1) hashmaps (maximum memory access speed is O(n^(1/3) for n bits, which has practical effects in the case of the various cache levels of a cpu and ram)
@Avighna
@Avighna 4 ай бұрын
@@palmberry5576 It is a common task in competitive programming. And besides, why is knowing the 2 millionth Fibonacci number not under a modulus useful? It’s all theoretical anyway.
@palmberry5576
@palmberry5576 4 ай бұрын
@@Avighna I meant it is useless to talk about modulo some integer considering the Fibonacci sequence’s length grows linearly with n
@QuadfishTym
@QuadfishTym 4 ай бұрын
@@palmberry5576 Can you elaborate on the n^(1/3) result? Where does that come from?
@diskpoppy
@diskpoppy 4 ай бұрын
My mind was wandering towards memory management and SIMD... but this is a math channel, and like you said - mathematicians can't program!
@janisir4529
@janisir4529 4 ай бұрын
@@diskpoppy this needs a cuda implementation somehow
@tolkienfan1972
@tolkienfan1972 4 ай бұрын
Find the right algo first. The rest is linear speedups.
@janisir4529
@janisir4529 4 ай бұрын
@@tolkienfan1972 Certified "Mathematicians don't know how to program" moment. 1:55 You are going to run out of memory before your slightly better scaling algorithm catches up in speed to one that was actually well written to utilize the computer well.
@diskpoppy
@diskpoppy 4 ай бұрын
​@@tolkienfan1972 You'd be surprised how much speed-up and overall efficiency you can gain when you're conscious of things like memory allocations, cache locality, and the hardware in general (that the program must run on in the end after all). The linear speed-up tends to be several orders of magnitude. Furthermore, there are absolutely cases where low-level details can affect the time complexity itself. On the flip side, even when the algorithm has a lower order, the constants that are left out of in the Big O notation can make it absolutely much worse for any inputs of interest. And I'd argue that actually implementing the thing and analysing it, can absolutely help with coming up with a better algorithm, especially if you find out all the redundant things a given program is doing.
@luigidabro
@luigidabro 4 ай бұрын
simd doesn't implement a carry bit
@denizgoksu9868
@denizgoksu9868 4 ай бұрын
This reminds me of the time our discrete math course had a quiz that asked us to "compute f_300" and I, naive and brave, unironically tried doing it by hand. I was and still am pissed off to an unprecedented degree that "compute" apparently meant "Express the general term of the sequence as a linear combination of exponentials and substitute 300 into the free variable without doing any reduction"-they could have just told us to do that yk
@landsgevaer
@landsgevaer 4 ай бұрын
I hope you knew how to use f(2n)= f(n+1)^2 - f(n-1)^2 at some point... 😉
@denizgoksu9868
@denizgoksu9868 4 ай бұрын
@@landsgevaer Proving it and using it was my original strategy but the computation part was left half finished as I handed the paper in. I also attempted it after the fact on a blank sheet and figured it would have taken far too much time at that point anyway. But after this whole ordeal I am now less naive than I used to be regarding how computations scale as numbers grow
@nikplaysgames4734
@nikplaysgames4734 4 ай бұрын
Currently taking a discrete math shmmer course, our textbook linearized the recursive Fibonacci formula, it looked very complicated, can’t imagine doing that on a test lol
@reddmst
@reddmst 4 ай бұрын
LMAO, I'm pretty sure the TA showed your paper to everyone in their lab and they had a ton of laugh about it xDD
@dank.
@dank. 4 ай бұрын
As a Russian, I don't blame you for thinking Karatsuba is Japanese
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
All I had to do was google it smh
@dank.
@dank. 4 ай бұрын
Just actually finished watching it - great video!
@filo8086
@filo8086 4 ай бұрын
As a Russian, i- i thought its japanese too
@treint6751
@treint6751 4 ай бұрын
​@@filo8086Yeah
@_wetmath_
@_wetmath_ 4 ай бұрын
as an asian i thought it was japanese too
@stefanalecu9532
@stefanalecu9532 4 ай бұрын
For the matrix method, you can have a 4x4 matrix derived from F(n), F(n-1), F(n-2), F(n-3). This is nice because you can express those with coefficients as powers of 2, which means you can use SIMD and process multiple numbers at the same time. You could even reasonably do this for an 8x8 matrix and get to use AVX2, but it's a tradeoff. Asymptotically nothing would change, but having a 4-8x speedup because of SIMD sure is helpful in real life. This is getting deep into the territory of optimizing big numbers (and at that point, why handroll your implementation instead of wrapping GMP?)
@janisir4529
@janisir4529 4 ай бұрын
I'm not sure SIMD would be helpful, moving data in and out of registers has quite an overhead. But the Number class should have been 2^32 based, that's basically just free speedup, because uint8_t is still done on the same ALU unit.
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
SIMD would be a bit more work to set up since the number class and its arithmetic is nontrivial, but those are ideas (and yeah, reinventing the wheel is definitely never worth it unless you think you're smarter than the many people who developed GMP haha but where's the fun in that). Also @janisir4529, while I used uint8_t for my FFT-based multiplications (for the sake of controlling the errors), everything else was done with uint32_t (the number class is actually templated)!
@janisir4529
@janisir4529 4 ай бұрын
@@SheafificationOfG Okay, that makes sense.
@Danylux
@Danylux 4 ай бұрын
love how i came to the channel for set theory and stayed for computer science
@SteveBakerIsHere
@SteveBakerIsHere 4 ай бұрын
Noooooo!!!!! Do not use this video as any kind of teaching of computer science. This is a train-wreck as far as computer science is concerned!
@kindlin
@kindlin 4 ай бұрын
I definitely came for the computer science, a lot of the second half of the math *woosh*
@aymangani5416
@aymangani5416 3 ай бұрын
@@SteveBakerIsHerewhy?
@DjVortex-w
@DjVortex-w 3 ай бұрын
If you want to calculate the multiplication of very large integers as fast as possible, use the GMP library. The authors have done a huge amount of work to make it as efficient as possible.
@NoNameAtAll2
@NoNameAtAll2 2 ай бұрын
and at that point you can just use provided fibonaci function
@suhradpatel2322
@suhradpatel2322 4 ай бұрын
14:37 I get it! 1FFFFFF is 33,554,431 in hexadecimal.
@janisir4529
@janisir4529 4 ай бұрын
Do template meta programming. Technically it just prints out a number, the compilation taking a very long time doesn't matter, as the task was ill defined.
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Template metaprogramming is a pathway to many abilities some consider to be unnatural.
@janisir4529
@janisir4529 4 ай бұрын
@@SheafificationOfG constexpr should also work
@JoJoModding
@JoJoModding 4 ай бұрын
The real answer is that you hardcore the largest number into the binary. Then the 1s time limit is mostly spend reading a number from disk and printing it again.
@janisir4529
@janisir4529 4 ай бұрын
@@JoJoModding I'm already literally cheating with template meta programming, but even I have standards to not sink that low.
@JoJoModding
@JoJoModding 4 ай бұрын
@@janisir4529 I mean, it produces the same program, but just gets there faster
@austinconner2479
@austinconner2479 4 ай бұрын
Using Schonhage-Strassen multiplication (basically fft over a finite field, so no using doubles and being limited by precision) and matrix exponentiation by squaring, I get the 67108864th fibb number in 1.02s. Doing the same using arithmatic over the number field gets the same in 993ms, basically not improving. Pari somehow computes the 200000000th number in under a second. Would be interesting to show how this was achieved
@spacebusdriver
@spacebusdriver 3 ай бұрын
Does it really make sense to compare these numbers when all calculations are (presumably) done on different machines?
@farlaxx219
@farlaxx219 3 ай бұрын
@@spacebusdriver If we know the spec of each processor and memory, you could probably make some kind of generic average based off the performance stats, ie your processer is 2GHz and you get the 1,000,000th number, and i have a 3GHz processor and get the 1,800,000th number, we could scale these down to 1GHz on each machine, we would find you get 500,000th number, and I get 600,000th number, thus my solution is better. In saying that, it wouldn't be that accurate, but it might give a decent estimation of performance comparison. True performance equivalence is to have some standardized machine that people could have or test it on and run it. Could be a nifty website idea, you slap in your code and see it performs compared to others.
@cobo1678
@cobo1678 4 ай бұрын
Man that "1 F for you, and 5 F's for your closest friends" joke had me cackling. solid CS and math humour here lol
@junyong0716
@junyong0716 4 ай бұрын
i dont get it
@vari1535
@vari1535 4 ай бұрын
i don't get it
@shortsornothing4981
@shortsornothing4981 4 ай бұрын
Jim Rohn once said "You are the average of the five people you spend most of your time with".
@JazzyMaxine
@JazzyMaxine 4 ай бұрын
@@vari1535 hexadecimal
@dinhero21
@dinhero21 4 ай бұрын
1FFFFFF₁₆ = 33554431₁₀ but why these numbers specifically?
@TheOneMaddin
@TheOneMaddin 4 ай бұрын
Your channel is truly one of the best math channels around right now. I know I know, opinions might vary depending on whats your level of math, but I can say that it perfect for me. And you do not lie to your audience that everything is EASY and then hit them with axioms they are supposed to absorb in 5sec. You know your math and you are not afraid to show it.
@ke9tv
@ke9tv 4 ай бұрын
When you got in the lecture to 'an F for you, and F''s for your five closest friends', KZbin cut to a commercial beginning 'An actual letter to [advertiser]'. I stuck around in the ad far too long waiting for your punchline, when I realized that it wasn't your joke, it was a practical joke from The Algorithm. I'm a computer scientist. I'm familiar with Schönhage-Straßen, and with Moler and Van Loan's 'nineteen dubious ways to compute the matrix exponential,' but your discussion is hilarious, in the flavour of Carl Linderholm's 'Mathematics Made Difficult'. Bravo!
@subclassify.
@subclassify. 4 ай бұрын
you got played
@bloom945
@bloom945 4 ай бұрын
Man I loved this video! Though I didn't understand much past the linear algebra, it was still interesting to see your analysis of the runtime and the possible solutions to improve it. Kudos!
@jm-alan
@jm-alan 4 ай бұрын
As soon as you started explaining digital multiplication, I immediately realized you were going the Karatsuba route A few months ago I started working on an arbitrary precision integer library (for Fun and Profit™), and spent a whole bunch of time benchmarking exactly where the crossover should be to switch back to doing traditional multiplication vs the crazy allocation cost of doing recursive Karatsuba
@johnchessant3012
@johnchessant3012 4 ай бұрын
19:00 "a true measure of success is when you manage to unmake a name for yourself" LMAO
@trwn87
@trwn87 4 ай бұрын
Yes, 😂.
@XZenon
@XZenon 4 ай бұрын
Gauss things
@SeanCMonahan
@SeanCMonahan 2 ай бұрын
I expected Euler to be honest
@Nikarus2370
@Nikarus2370 4 ай бұрын
If you want an easy quick followup video. See how long it takes each other function to hit the number reached by the gold metalist number. (feel free to not caluclate it with the recussive function... pretty sure we'll hit the heat death of the universe before that 1 gets done)
@andermium
@andermium 4 ай бұрын
Thank you for the subs at 11:40 💜! People that just copy their script have spoiled their jokes to me before
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Glad the effort was worth it!
@BruteZ7957
@BruteZ7957 Ай бұрын
I haven't been as stimulated and entertained and educated by a video as by this in the past 6 years. I felt like a kid again having newly discover numberphile and minutephysics on KZbin. love it. thank you so much. love you man.
@ghostrider3911
@ghostrider3911 4 ай бұрын
Loved this video! I'm a math & cs student, I learned a lot from watching how you connected all of these different areas in math/cs to solve a deceptively simple sounding problem! Please do more stuff like this, it's invaluable how you seamlessly showcased the usage of linear algebra, complexity analysis, complex numbers, Fourier transforms, bit/byte representation of the numbers, optimizing multiplications (and anything else I missed) for optimizing this. I've read and studied these concepts but it was never made THIS clear to me how they could be utilized in practice in such a cohesive video. If you read this, I'm curious how long did it take you to optimize this and get all the material for the video?
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Really appreciate the comment! I kinda threw the code together a month ago, and then did some major refactoring halfway through before making it public. I kinda kept things honest (except for the bit-reversal in the FFT implementation), so I tried not to stress myself out with fine-tuning my optimisations, and I was already aware of the algorithms I was going to use before I put the video together.
@bingusbongus9807
@bingusbongus9807 4 ай бұрын
i remember when and how i was taught the fibonacci sequence, it was year 4 and we were learning about sequences of numbers and the teacher said that this is a sequence not even mathematicians could figure out until they were told it and wrote the fibonacci sequence on the board, she gave us an attempt to figure out the pattern and no one did it
@thefunseeker9545
@thefunseeker9545 Ай бұрын
Pygmalion effect
@bingusbongus9807
@bingusbongus9807 Ай бұрын
@@thefunseeker9545 i had never heard of that but looking it up i guess so, it was more that we (or at least i) hadnt been taught yet how flexible sequences were, as in, i had never seen a sequence before that required n-1 to work out n, the previous ones had been things like nx2 or n^2 or n+8 if you get what i mean, everything could be reduced down to a formula that could be worked out without the previous numbers (even though we didnt know how to do that, im just explaining the difference)
@wkingston1248
@wkingston1248 4 ай бұрын
Great video, had a great time watching it. Looking forward to your next one! One peice of feedback though, dark blue text on a black background is very hard to read due to the contrast. It was difficult to read your code sometimes.
@DiThi
@DiThi 4 ай бұрын
Not just contrast, but also video compression, where colors have less resolution (particularly pure blue and pure red).
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Yeah, the video definitely looked better on my computer ("It runs on my computer" moment). I'll be changing my choice of colours for code in the future for sure, thanks!
@ricpb
@ricpb 4 ай бұрын
This is essentially a speedrun in computer science. Well done! Imagine having this class on the first day of computer science and then learning all the details about this masterpiece.
@YEWCHENGYINMoe
@YEWCHENGYINMoe 4 ай бұрын
11:02 EXPANDED FIBONACCI NUMBERS INTO THE REALS
@edsaid4719
@edsaid4719 4 ай бұрын
Akchually it's only expanding into the rationals 🤓☝️
@Rando2101
@Rando2101 3 ай бұрын
​@@edsaid4719 complex numbers:
@mujtabaalam5907
@mujtabaalam5907 3 ай бұрын
You don't need to compute evey Fibonacci number, only the largest - so your exponential matrix multiplication can just keep doubling for the entire second to get something huge
@TerjeMathisen
@TerjeMathisen 4 ай бұрын
Very nice! I spent the first 20 minutes or so waiting for the Binet formula, did not expect you to get close to the limit for fft multiplication...
@leglaude6211
@leglaude6211 4 ай бұрын
As soon as you said the problem could be written using matrices I immediately thought "It could be a good idea to diagonalize the matrix!" and kept going crazy because you just wouldn't do it (until the end). Good video!
@zeFresk
@zeFresk 4 ай бұрын
I have no idea how I ended up here, but this one of the best video I've seen. I look forward to your future videos :) I also loved your editing !
@TalkingBook
@TalkingBook 4 ай бұрын
This video is packed with easter eggs that are barely visible on top of a rapid if smooth delivery. I have not laughed so hard at a mathy video ever. Nor rewound so many times. Straight talk from a meme master.
@Filup
@Filup 4 ай бұрын
I started watching this video shortly after it was posted, and decided to implement this all in Rust using benchmarking. I thought this would be a fun project since I am new to Rust. 6h later, and things are getting off the ground. I'll edit this comment and add a link to my repo when it is finished :)
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Even if (when?) you beat my golden record, I still won't convert to rust 🦀
@Filup
@Filup 4 ай бұрын
@@SheafificationOfG I started in python and C# as my main, and then got into Haskell. I'm loving Rust, but it's definitely a chore to learn. It was difficult to find the time to learn between semesters 😩
@benharris8382
@benharris8382 4 ай бұрын
This is an incredibly neat demonstration of optimisation techniques that typical programmers like myself aren't familiar/comfortable with. Great video, well done!
@Luca_5425
@Luca_5425 4 ай бұрын
Duuuude great video quality! I was impressed this channel didn't have more subscribers... got me at the end, though! For sure subscribing
@jacquev6
@jacquev6 4 ай бұрын
This is great work! I loved seeing more and more complex math theory appear to solve a seemingly simple problem faster and faster. Thank you for taking the time to produce this video and share it with us!
@LalaithMeren
@LalaithMeren 4 ай бұрын
I thought there would be a joke about constexpr and compile-time calculations to create a constant time result at runtime. Nice video
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Missed opportunity
@Roy-K
@Roy-K 4 ай бұрын
Before watching: My immediate thought would be to use x86 assembly and run the following pseudocode int x = 0 int y = 1 while(onTheClock): x += y y += x print(lastModified) print(numIterations*2) There’s obviously some cleanup to be done, but essentially, just adding and storing the result repeatedly between two 64-bit registers After finishing the video: How can I have forgotten the fast Fourier transform, and the myriad of other things are definitely did not fly over my head! How silly of me (incredible video!!)
@sebastianmestre8971
@sebastianmestre8971 4 ай бұрын
I thought you were going to explain finite-field FFT (a.k.a. Number Theoretic Transform) at the end. FFT can be suitably modified to work on Z_p instead of C, for certain primes p. The main requirement on p is that 2^k | p-1 for some k > log2(N), because k bounds how many times you can do the FFT trick of splitting into even and odd parts Not only does NTT not have precision issues, it is also usually faster because it uses half as much space and basic operations are done on integers.
@jamilhaidarahmad4092
@jamilhaidarahmad4092 4 ай бұрын
This has been one of the best videos I've seen on KZbin. While I'm already familiar with all of the steps you've taken, the way you merged them together neatly while still respecting and addressing the imprecisions added when you use the fourier transform made the video a very enjoyable and elegant demonstration. By addressing the issues at the end you scratched that itch at the back of my head and I thank you for that.
@Xanthe_Cat
@Xanthe_Cat 4 ай бұрын
The Binét formula was always going to win this competition. However you perhaps ought to have started by examining the Lucas equations to find better quick relations for obtaining large Fibonacci terms.
@MooImABunny
@MooImABunny 4 ай бұрын
I was waiting for the Binet algorithm from the start, but the journey was actually interesting, so I stayed. I honestly never considered the fact that if you work with numbers with undetermined bit size, you'd need fft just to compute a product of two integers, that's pretty crazy
@CraigGidney
@CraigGidney 4 ай бұрын
This python code gets past the four millionth Fibonacci number in half a second on my laptop. Normally, python would be disastrous for speed, but most of the time is spent inside CPython's schoolbook(?) multiplication doing the last three squarings. The way I wrote this code was by starting from repeated squaring of {{0,1},{1,1}} and then simplifying by realizing the intermediate matrices always had the form {{a,b},{b,a+b}}. def fib_power_of_2(exponent: int) -> int: a, b = 0, 1 while exponent: a2 = a**2 b2 = b**2 ab2 = (a+b)**2 a = a2 + b2 b = ab2 - a2 exponent -= 1 return b
@fplancke3336
@fplancke3336 4 ай бұрын
Python integer multiplication is quite optimised: it uses Karatsuba when warranted.
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
Yeah, I very conveniently left out how easy it is to outdo my implementation using well-established large number classes like those used in CPython or GMP :^)
@CraigGidney
@CraigGidney 4 ай бұрын
@@fplancke3336 Hey, you're right! I thought Python used schoolbook but I searched "karatsuba" in the CPython's github repo and found where they switch to it. They also seem to be making decisions based on if it's squaring instead of multiplying. They don't seem to be using Schonnage-Strassen or SSE instructions, though.
@jacobcohen76
@jacobcohen76 3 ай бұрын
Liked it! The last solution was beyond what I knew from school. You've inspired me to start studying maths again because i haven't thought of an eigenvalue in years.
@mateusvmv
@mateusvmv 4 ай бұрын
@0:44 Aah I see you have the Manga Guide to Statistics
@NTNscrub
@NTNscrub 3 ай бұрын
I saw bionicle and had to like. Moreover, awesome video in regards to the consequences of abiding by ‘Big O’ notation for efficiency while ignoring practical limitations of memory. It also shows a good peek into the depths of optimization for beginners in the realm of coding. Thanks for the treat.
@tolkienfan1972
@tolkienfan1972 4 ай бұрын
Ok, the last method I did not see coming. Nice job!
@antarctic214
@antarctic214 4 ай бұрын
An alternate way to get from 4 to 2 numbers is to realize that calculating Mⁿ is the same as evaluating the polynimial Xⁿ at M. Because M² = M + 1 this evaluation factors through Z[X]/, which means you can just calculate X^n in this ring (with exponentiation by squaring) instead and then ebaluate at M. The last step is the same as adding the coefficients in front of X⁰ and X¹. The same can easily be done for a general linear recurrence by calculating X^n in R[X]/ and linearly mapping to R by mapping Xⁱ to the i-th starting value.
@mgostIH
@mgostIH 4 ай бұрын
Wow I never considered the field method at the end, it can come out useful for other stuff whenever one knows you're working with just specific roots! I wonder how one can generalize this for fast diagonalization of any matrix, since eigenvalues will always be roots of polynomials, I will think about it, right after liking and subscribing!
@Cracks094
@Cracks094 4 ай бұрын
Man the world of Math is truly wild. I'd have done a+b=c, then b->a, c->b and repeat. Seeing you use vastly more complex things that I am unable to comprehend was just as fascinating as it was confusing to me. I learned absolutely nothing, understood even less than that and somehow, I was still entertained. Incredible.
@CarrotCakeMake
@CarrotCakeMake 4 ай бұрын
FFT is usually done using number theoretic transform, rather than real numbers. And there's probably a fast way to do this using Chinese Remainder.
@DarthWho01
@DarthWho01 Ай бұрын
You can still use FFT, just do it over a finite field of some kind iirc. Pretty sure you can do it in the ring mod 2^2^n+1 as well which works nicely because you can use 4 as a root of unity or something?
@CarrotCakeMake
@CarrotCakeMake Ай бұрын
@@DarthWho01 Yeah that's basically what number theoretic transform is, if I remember right. Though 253 is also a nice prime because it turns things into bytes. And it may be faster just to use a prime near 2^64.
@MPKampersand
@MPKampersand 4 ай бұрын
I love the idea that someone would come across this as their first introduction to the Fibonacci sequence, be able to immediately understand what it means that it's a "recurrence relation," and then make it through the whole video.
@spinachstealer
@spinachstealer 4 ай бұрын
Even knowing everything in the video already, the humour was quite good and I was thoroughly entertained, and seeing the runtime graphs was pleasing. Another banger from my favourite sheaf!
@upsidewalks
@upsidewalks 4 ай бұрын
A dedicated video for such a simple yet deep problem. What a blessing!
@kevinosborn3258
@kevinosborn3258 4 ай бұрын
Dude this channel is so good Curious about parallelization 👀
@lih3391
@lih3391 4 ай бұрын
You have to do the computations in order though right?
@luigidabro
@luigidabro 4 ай бұрын
​@@lih3391yes
@janisir4529
@janisir4529 4 ай бұрын
@@lih3391 I kinda want to multithread this, but I don't think it's possible. The matrix multiplication could be parallelized theoretically, but by the time starting a thread for a single multiplication becomes worth it, we no longer fit into memory.
@lynnwilliam
@lynnwilliam 4 ай бұрын
As someone who did Complexity Analysis in college, I love your video. brings me back ! Your not a YT programmer, you are a computer scientist !
@csilval18
@csilval18 4 ай бұрын
The analysis at 7:30 is incorrect. The sum of numbers is proportional to the length of the number, not its size, so it doesn't grow with n, rather with log(n). So the algorithm isn't O(n^2) but O(nlog(n)). Huge difference.
@landsgevaer
@landsgevaer 4 ай бұрын
Nah, it is correct, actually. It indeed grows with n if you define n as the number of digits, like you say. Now, since the Fibonacci numbers grow asymptotically exponentially, their number of digits relates linearly to the index (roughly one extra digit every five steps), and that index is used as n in the video. So the video looks correct to me.
@williamjedig7480
@williamjedig7480 4 ай бұрын
He also mentions this at 10:54 , but I agree it should've been mentioned earlier. Stumped me as well
@ddddddbingbong
@ddddddbingbong 3 ай бұрын
Completely agree. I just typed out something similar and then saw your comment
@luminica_
@luminica_ 3 ай бұрын
@@landsgevaer If you define n as the number of digits you perform 2^n sums of n digits so it is n*2^n not n^2.
@landsgevaer
@landsgevaer 3 ай бұрын
@@luminica_ 2^n sums of digits? How is that?
@jgd7344
@jgd7344 4 ай бұрын
What a fascinating number, great video! Happy birthday to your dad from Australia!
@RuslanKovtun
@RuslanKovtun 4 ай бұрын
50 lines of C code with GMP and matrix approach (4 multiplications) with -O0 can go for 67'108'864-th fibonacci number in one second. Life lesson: do not rewrite yourself highly optimized code.
@luigidabro
@luigidabro 4 ай бұрын
Why would you tell us your result by running it in debug mode? Try -O3 (obviously) -march=native
@janisir4529
@janisir4529 4 ай бұрын
I mean, I have managed to write a better printf than printf. It could only print out integers, but it was very fast.
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
@RuslanKovtun used -O0 to really show me up, since I used -O3 and -march=native But you're right, there's unfounded hubris in thinking you can outdo the work of well-established large number libraries, even Python can put my golden output to shame.
@RuslanKovtun
@RuslanKovtun 4 ай бұрын
@@SheafificationOfG , you and ​ @luigidabro missed that GMP is a library that is statically liked as -lgmp and has all optimizations in it. Yes, it is like in python where your code just calls it, but I will argue that python is still slow even for single "for" loop.
@tediustimmy
@tediustimmy 4 ай бұрын
The thing is, GMP has like ten different multiplication algorithms to choose from, and it selects the presumed fastest given the input arguments. There is no purpose in doing a Fourier transform for 6 * 4.
@NubPaws
@NubPaws 4 ай бұрын
This was such an amazing video, thank you so much for making it. I have always wondered where the closed-form formula came from for the Fibonacci numbers.
@blamethefranchise1473
@blamethefranchise1473 4 ай бұрын
18:30 radiohead reference
@mateusvmv
@mateusvmv 4 ай бұрын
@23:30 You can use Number Theoretic Transform to achieve the same time complexity as FFT without loss of precision. You just need to find a very large prime number (slow) and hard code it (fast).
@aik21899
@aik21899 4 ай бұрын
5 minutes in, already had to flip a table on the affine joke. Great video, subbed.
@reecetilley585
@reecetilley585 4 ай бұрын
When I was first learning to code, and challenged myself to write a program that would calculate the fibonacci sequence, 3:42 was actually pretty much the exact program I came up with after a lot of thinking! I'm glad to hear it was actually pretty efficient
@Patashu
@Patashu 4 ай бұрын
The 6 million fibbonaci number limit is just because you're using double floating point numbers, right? If you swapped to quads or arbitrary precision you could go past that then. Though that's probably a little bit too much of a rabbit hole for the scope of this video...
@ptitbgdu8040
@ptitbgdu8040 3 ай бұрын
7:26 Just some more details to explain why the number of digits of Fn is O(n) : the sequence (Fn) is equivalent to p^n where p is the golden ratio. So the number of digits of Fn is O(log(p^n)) = O(nlog(p)) = O(n). This being in a linear loop gives an algorithm with a complexity of O(n²).
@fernandogaray1681
@fernandogaray1681 4 ай бұрын
3:59 lmao best math joke I've heard lol
@liesdamnlies3372
@liesdamnlies3372 4 ай бұрын
A fascinating topic marred by the unreadability of the blue-on-black types and reserved words.
@waiitwhaat
@waiitwhaat 4 ай бұрын
Didn't expect a channel doing fast Fibonacci algorithms to be into osu! but somehow I'm not surprised.
@nikplaysgames4734
@nikplaysgames4734 4 ай бұрын
Wait he plays osu as well? What’s the osu channel
@waiitwhaat
@waiitwhaat 4 ай бұрын
@@nikplaysgames4734 My hint was 'wysi' in the chapter name for 17:27
@FunctionallyLiteratePerson
@FunctionallyLiteratePerson 4 ай бұрын
The whole time, I was wondering why you weren't using the closed form. Great video!
@Saru-Dono
@Saru-Dono 4 ай бұрын
Incredible video. I stopped understanding when we hit FFT, but still a great watch.
@Foxtr0t1337
@Foxtr0t1337 4 ай бұрын
I have no idea what you are talking about at 3:47. So I HAVE TO subscribe.🤣🤣🤣🤣🤣🤣🤣
@chubphd
@chubphd 4 ай бұрын
“[It] is known as the Cooley-Tukey algorithm, so-called because these insights are due to none other than the same person who discovered the Fourier transform… Gauss.” LMAOOO
@UnitSe7en
@UnitSe7en Ай бұрын
First, think of our numbers _x_ and _y_ as degree-less-than-n polynomial functions in the base variable _B._ Ohhh yeaa! So much clearer now!
@sefron6207
@sefron6207 4 ай бұрын
When you see it
@gilbertboys6719
@gilbertboys6719 4 ай бұрын
when you fucking see it
@Baptistetriple0
@Baptistetriple0 4 ай бұрын
the second I saw the 2x2 matrix equation at 5:28, matrix diagonalisation immediatly came to mind. Probably PTSD from math class. I wondered when you will talk about this and I was not disappointed when it came out !
@JohnBukkake
@JohnBukkake 4 ай бұрын
Whats your osu name
@IlaiShoshani
@IlaiShoshani 4 ай бұрын
Wow, great video! I really hope there would be more algorithm and performance focused videos in the future :)
@Harmoniou-s
@Harmoniou-s Ай бұрын
What is that you said at 5:28 ? hawk ____?
@dihydrogen
@dihydrogen Ай бұрын
this video has proper captions thankfully. he says 'ad hoc'
@saniancreations
@saniancreations 4 ай бұрын
Great video, one criticism though: dark blue is really not that legible on a black background, changing the colours of the code highlighting to something more contrasting (e.g. around 3:54) would help a lot!
@WoolyCow
@WoolyCow 4 ай бұрын
nah im gonna stick to just doing it the simple way if that's okay with you... also you sound weirdly similar to physics for the birds btw
@SheafificationOfG
@SheafificationOfG 4 ай бұрын
I'll take that as a compliment! I like his content
@thebilliestsilly
@thebilliestsilly Ай бұрын
This is the least I've ever understood either a math or a coding video and I still enjoyed it thoroughly
@jwhine
@jwhine Ай бұрын
5:30 hawk tuah
@petergriffin8086
@petergriffin8086 Ай бұрын
I heard it
@devotownproductions9652
@devotownproductions9652 18 күн бұрын
Nice
@Nim2
@Nim2 4 ай бұрын
Actually perfect timing, since I just proved binet's formula as prep for my LA exam
@glorialee-goldthorpe1007
@glorialee-goldthorpe1007 4 ай бұрын
Love your video ❤❤❤
@miguelsouto2091
@miguelsouto2091 4 ай бұрын
6:42 yes the reason why the graph is not linear is because of the class number that is being used and not because of the summing of a number with n digits being O(n)
@JulianBliss
@JulianBliss 4 ай бұрын
what the hell this video is sick so many great jokes, and a lot to learn. I'd never have thought to use Master Theorem to analyze an algorithm like this, and I would never have guessed that Binet's formula actually would turn out to be faster in the end, given how much floating point multiplication I assumed would have to be done
@fibbooo1123
@fibbooo1123 4 ай бұрын
The whole point was that binets formula uses an implementation without floating point multiplication by expressing it as a field (except that there \is\ floating point multiplication hidden in the fast Fourier transform)
@h.i.sentertainments8580
@h.i.sentertainments8580 4 ай бұрын
Can't believe that its over 25 minutes long. It was so engaging, it felt like a second
@Landee
@Landee 4 ай бұрын
Bro i didnt understand ANYTHING
@informitas0117
@informitas0117 Ай бұрын
I liked when the lines moved.
@xninja2369
@xninja2369 Ай бұрын
You need to be math major + CS both to understand this video properly I sucks at both both I am junier in math and I don't know much of C+ bit for what i know it old even making it more consuming at first ,😳
@syrix5914
@syrix5914 4 ай бұрын
This is completely above my pay grade. But I enjoyed it a lot. After the introduction of the matrix multiplication I was expecting some GPU shenanigans.
@Lord-Sméagol
@Lord-Sméagol 4 ай бұрын
Here's a little problem to test your maths and programming: Discover the null-terminated ASCII string in the least significant bytes of the 13,293,882,455,155,005,192,496,327,309,753,896,264,952,698,387,015,244,135th term of the Fibonacci Sequence. If you found that too easy, find which term is required to produce "You're only supposed to blow the bloody doors off!" (null-terminated without the quotes). * Here are the first 9 digits [124,120,758, ... ] just to prove that I know the answer.
@Psi141
@Psi141 3 ай бұрын
How?
@Lord-Sméagol
@Lord-Sméagol 3 ай бұрын
@@Psi141 Example: the 100th term is 354,224,848,179,261,915,075, which is 13 33DB 76A7 C594 BFC3 in hexadecimal. If you only need the last 8 bytes, you can ignore the other bytes during your calculation to speed things up MASSIVELY. This is "modulo 2^64 arithmetic". I wrote a program in Visual Basic Net that uses System.Numerics.BigInteger to do the calculations in modulo 256^(length of string + 1 [for the null] ). It just takes a string and searches for the earliest term that produces the desired low bytes. It found the term for this challenge very quickly, even though BigInteger doesn't use multiple threads internally for multiplication. I did try to parallelize my search algorithm, but it doesn't branch, so that didn't help.
@Lord-Sméagol
@Lord-Sméagol 3 ай бұрын
Last night I decided to "share my source code" in a crazy way: I removed the redundant whitespace to shrink the problem and speed up the search [The IDE will regenerate it all]. After 90 minutes of searching, my program found the: 298,160,865,648,573,042,064,827,503,271,542,205,751,395,235,936,870,060,903,857,251,779,281,661,082,527,403,626,487,334,683,400,168,959,394,599,516,907,884,789,333,110,520,815,040,876,129,986,239,059,243,803,992,540,416,080,108,847,969,967,166,653,773,995,223,756,939,328,660,593,761,867,075,938,031,627,694,333,752,037,113,642,144,784,401,910,233,209,096,247,809,392,657,060,556,276,352,335,849,519,531,516,812,997,595,374,900,091,434,328,347,292,695,036,242,287,914,162,772,658,493,665,957,462,200,034,095,386,734,140,552,051,971,035,857,485,533,666,546,316,918,588,509,053,322,099,173,208,608,448,181,946,685,636,003,723,864,840,811,032,210,346,526,524,365,445,170,993,816,749,706,175,700,970,530,127,933,542,010,662,328,795,384,478,601,108,982,322,594,120,213,081,249,029,441,907,550,808,692,834,691,534,130,317,114,514,058,697,515,543,925,807,092,093,692,845,143,167,486,014,273,836,729,028,443,095,602,323,977,843,419,997,442,706,957,408,623,170,215,922,154,649,447,416,520,914,468,948,670,728,032,145,843,542,624,634,532,656,484,509,493,342,808,692,613,705,866,266,591,008,684,375,893,231,294,388,657,854,579,900,071,695,115,101,597,892,093,017,831,435,410,201,885,445,317,196,974,173,554,423,413,999,179,297,846,555,656,584,857,346,286,239,826,369,524,579,113,155,346,835,511,192,654,963,525,325,006,998,347,033,171,458,782,352,731,784,854,126,668,652,595,651,736,381,284,500,525,482,407,891,388,836,073,507,692,462,471,444,929,981,346,780,088,965,771,269,247,009,490,279,801,490,007,736,177,761,420,038,454,327,288,910,587,971,079,699,024,448,933,599,281,122,565,969,958,545,954,876,858,592,773,407,042,790,580,208,980,625,305,445,847,743,869,200,833,693,062,716,716,398,784,464,686,464,265,559,639,356,952,824,032,874,750,279,088,810,221,128,750,050,554,888,980,604,945,314,799,033,949,495,336,396,085,648,568,677,398,308,703,158,743,247,989,943,003,850,286,103,821,521,773,700,894,341,223,623,027,615,902,698,860,477,958,492,953,934,421,258,207,746,228,726,308,205,085,089,417,445,372,793,681,623,317,779,273,087,940,250,865,087,525,813,325,919,857,384,014,639,496,079,930,024,012,293,805,861,766,241,276,718,594,373,439,879,516,522,444,726,093,698,312,794,382,777,357,065,421,552,130,870,625,720,457,399,591,622,793,786,194,703,126,746,136,484,030,327,773,774,629,455,005,682,618,461,084,353,927,563,500,668,859,303,229,551,108,807,523,080,227,402,434,682,550,787,167,926,557,688,414,309,788,332,054,929,701,008,377,631,863,260,122,448,321,029,790,268,986,109,535,773,535,134,077,692,214,576,123,325,198,222,579,336,656,749,060,639,452,949,208,576,607,975,854,788,979,234,028,581,525,061,095,018,235,100,543,734,886,393,927,930,521,327,556,530,730,343,442,867,331,809,392,576,450,116,886,312,065,636,002,419,417,956,380,772,713,899,706,798,513,866,498,793,910,158,419,346,251,339,151,818,944,899,733,114,330,442,780,835,598,356,690,222,733,414,265,291,112,596,885,617,846,543,391,902,697,747,210,126,587,566,831,243,585,441,792,211,352,624,732,256,451,356,519,456,313,198,011,230,617,387,661,264,418,138,555,116,399,306,675,963,694,661,271,828,387,881,696,263,590,763,300,841,609,232,375,923,223,820,857,674,108,009,724,806,871,367,112,776,651,640,837,987,921,617,832,351,551,679,224,387,725,655,146,013,999,669,089,438,951,556,946,582,883,008,618,285,077,868,689,213,044,052,229,949,946,385,547,367,230,085,952,892,318,954,123,568,012,107,815,147,496,427,250,912,782,486,634,199,615,244,963,923,448,632,576,960,040,163,046,585,780,627,168,512,484,078,881,786,693,157,107,880,746,316,242,622,398,327,802,164,533,186,608,534,750,770,267,813,438,108,395,981,200,862,857,808,084,674,102,699,387,811,787,599,937,916,927,885,175,873,290,488,561,534,822,751,848,060,109,196,505,153,948,054,425,342,680,654,313,607,957,499,514,005,673,675,444,821,046,266,543,417,695,820,567,846,931,456,232,176,961,708,089,934,399,587,187,624,327,247,970,877,181,809,242,974,313,040,241,042,115,966,528,228,095,213,623,781,617,344,334,214,193,923,984,364,492,612,765 th term! I didn't include a null byte to mark the end of the text; It should be evident where the listing ends, as those bytes will not be text characters. Also, it ends at "End Module".
@justlm228
@justlm228 4 ай бұрын
a good optimization is to use number theoretic transform that is done on the ring Z_p, where p is such a prime that 2^n | (p - 1). avoids dumb floating point arithmetic and precision errors altogether while also having better complexity of basic arithmetic operations, but there's a tradeoff, a big amount of taking numbers modulo p. a good optimization tactic you could use use Montgomery multiplication, in which we take numbers modulo only in the start and in the end while replacing all modulos in fft with bitwise operations. saw this optimization in some blog on codeforces as a cool trick
@paulw987
@paulw987 4 ай бұрын
"I'm a pure mathematician. I don't care about the real world." That cracked me up. 😂❤😅
@Qstate
@Qstate 4 ай бұрын
This was very interesting, i like how you guide through the issues.
@sanoysgamingchannel
@sanoysgamingchannel 4 ай бұрын
i dont remember what my record for 1 second was, but i did manage to calculate the 2^32nd in 5 hours and 30 minutes
@sanoysgamingchannel
@sanoysgamingchannel 4 ай бұрын
Just checked my code again, the highest i got within a second was the 4194304th at 0.345263 seconds And the 4194303th at 561188 seconds Usi g both of thoose to calculate the 8388608th then only vompleted at 1.032570 seconds, i bet rerunning the code can manage that in a second if i am lucky
@mr.roblox9858
@mr.roblox9858 2 ай бұрын
Honestly the linear non recursive algorithm was the farthest I thought for this Fibonacci algorithm. While I may not understand anything past that ( I have a very vague idea of linear algebra) right now I’m learning calculus. I think this was a really cool thought about optimization. Kinda reminds me of overclockers avoiding usb to save on cpu cycles.
@yves-loic9141
@yves-loic9141 4 ай бұрын
@7:40 some more details where O(n^2) is coming from. The algorithm speed can be estimated as O(n ln(F(n))) as the number of digits on F(n ) grows as ln(F(n)) not as n. F(n)= golden ratio ^n so ln(F(n))=n.
@Charky32
@Charky32 4 ай бұрын
Was studying this kinda stuff this year, didn't think I'd see it outside of university, nice video
@paintspot
@paintspot 3 ай бұрын
Great video! My only qualm is the choice of "Which axis is which" on the graph. Like, the huge slowdowns in the graph at 9:45 look like huge JUMPS in progress, lol -Paintspot Infez Wasabi!
Complex Fibonacci Numbers?
20:08
Stand-up Maths
Рет қаралды 1 МЛН
AI can't cross this line and we don't know why.
24:07
Welch Labs
Рет қаралды 1,3 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 5 МЛН
Noodles Eating Challenge, So Magical! So Much Fun#Funnyfamily #Partygames #Funny
00:33
Каха и лужа  #непосредственнокаха
00:15
快乐总是短暂的!😂 #搞笑夫妻 #爱美食爱生活 #搞笑达人
00:14
朱大帅and依美姐
Рет қаралды 12 МЛН
Algebra - It's not what you think it is!
22:07
Sheafification of G
Рет қаралды 11 М.
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Рет қаралды 5 МЛН
New Breakthrough on a 90-year-old Telephone Question
28:45
Eric Rowland
Рет қаралды 171 М.
Solving one of the logic puzzles of all time!
20:34
Sheafification of G
Рет қаралды 25 М.
The Bubble Sort Curve
19:18
Lines That Connect
Рет қаралды 663 М.
How on Earth does ^.?$|^(..+?)\1+$ produce primes?
18:37
Stand-up Maths
Рет қаралды 414 М.
10 weird algorithms
9:06
Fireship
Рет қаралды 1,3 МЛН
I Trained an AI for 2 Years on Trackmania. It's Breaking Records.
27:50
A tale of two problem solvers (Average cube shadows)
40:06
3Blue1Brown
Рет қаралды 2,8 МЛН
Visualizing 4D Pt.1
22:56
HyperCubist Math
Рет қаралды 1 МЛН
МЕНЯ УКУСИЛ ПАУК #shorts
00:23
Паша Осадчий
Рет қаралды 5 МЛН