The OPTIMAL algorithm for factoring!

2023 ж. 31 Нау.
39 751 Рет қаралды

Our program:
github.com/polylog-cs/univers...
RSA factoring challenge: en.wikipedia.org/wiki/RSA_Fac...
Big thanks to: Tomáš Gavenčiak, Matěj Konečný, Jan Petr, Hanka Rozhoňová, Tom Sláma
Our Patreon: / polylog
Credits:
To make this video, we used manim, a Python library: docs.manim.community/en/stable/
The color palette we use is solarized: ethanschoonover.com/solarized/
music: Thannoid by Blue Dot Sessions: app.sessions.blue/browse/trac...
music: Ride of the Valkyries from R. Wagner from wikimedia commons

Пікірлер
  • My computer is currently using 80% of its memory to find the factorization of 15. In other words, it will crash asymptotically.

    @alansmithee7549@alansmithee7549 Жыл бұрын
    • Nailed it asymptotically

      @minoubrc4773@minoubrc4773 Жыл бұрын
    • They say memory's cheap nowadays

      @SuperNolane@SuperNolane Жыл бұрын
    • 😄

      @hadibq@hadibq Жыл бұрын
    • maybe 15 is a hidden gem prime - i dont get why my comment hasnt showed up (or i cant see it)

      @TymexComputing@TymexComputing4 күн бұрын
  • Awesome, it can also be used to find ideal chess moves, or reduce GPT4 down to an optimal set of weights! Very versatile, though it does take a computer that's a little faster than mine.

    @RadioactivePretzels@RadioactivePretzels Жыл бұрын
    • Yep, although it is a bit more tricky! The way we use this trick works very well for "NP problems" where checking is easy and computing hard. You can also use it for more complicated problems like finding ideal chess moves, but you need to throw in one more idea (I want to drop link to this in the video description of the followup video).

      @PolylogCS@PolylogCS Жыл бұрын
  • Currently attempting to find the factorization of 8. Truly masterful work, this will bring a revolution 😂

    @santius0@santius0 Жыл бұрын
    • A wise usage of memory :^)

      @alansmithee7549@alansmithee7549 Жыл бұрын
    • Wow, you got past 4?

      @PolylogCS@PolylogCS Жыл бұрын
    • @@PolylogCS Look at Mr. Chips over here, getting over 2!

      @jerichaux9219@jerichaux9219 Жыл бұрын
    • Well 8 is not the product of two primes, thus even with infinite power you won’t find out…

      @romain.guillaume@romain.guillaume Жыл бұрын
    • ​@@romain.guillaume jokes on you, I'm checking complex numbers as well

      @paulkanja@paulkanja2 ай бұрын
  • April 1st should go into history as being the day the Internet was broken.

    @y_arml@y_arml Жыл бұрын
    • Indeed

      @productlog5895@productlog5895 Жыл бұрын
    • wtheckkkk

      @ruscul7155@ruscul7155 Жыл бұрын
  • This is a pretty neat example of how misleading asymptotic complexity can be. :)

    @YellowBunny@YellowBunny Жыл бұрын
    • Yep :)

      @PolylogCS@PolylogCS Жыл бұрын
  • Running simultaneously is very clever. This was the first solution I thought of with respect to "asymtoticaly optimal" but didnt know how to get around the Halting Problem

    @electra_@electra_ Жыл бұрын
    • This technique is called "dovetailing."

      @circuitcraft2399@circuitcraft2399 Жыл бұрын
  • a lecture into why smaller big O doesnt always mean faster, wonderful

    @machitoons@machitoons Жыл бұрын
  • Just save the prime factors before multiplication. O(1). Easy. I don't understand why the engineer forget the obvious solution to just always pack the prime factors alongside the product.

    @timschulz9563@timschulz9563 Жыл бұрын
    • i think for security. the products are sent over the internet and valid receiver finds out the primes. if invalid receivers get the primes bad things can happen.

      @anupbarua6151@anupbarua6151 Жыл бұрын
    • @@anupbarua6151 why don't you encrypt them then?

      @Megaranator@Megaranator Жыл бұрын
    • @@Megaranator i studied these things a long ago, i think they de-encrypt the messages by the primes. send the primes alongside the message? why? now will you encrypt the primes also?

      @anupbarua6151@anupbarua6151 Жыл бұрын
    • @@anupbarua6151 yes. enough recursions in and it's gotta be not worth it go trough all the that decrypting for the attackers right? /s (I hope you know that the video and the comments are a joke)

      @Megaranator@Megaranator Жыл бұрын
    • @@Megaranator all jokes aside.

      @anupbarua6151@anupbarua6151 Жыл бұрын
  • Brazissimo Reminds me of some of the more "Creative" sorting algorithms that got thrown around when I was in school 😆

    @lane_m@lane_m Жыл бұрын
  • I was a bit thrilled until I saw we were April 1st... Good one!

    @redsteph@redsteph Жыл бұрын
  • Oh, tricky! If it was linear in execution time (1 step of n-1, 2 steps of n-2, 3 steps of n-3), then it would be the square of the most efficient algorithm Instead, since it is exponential, the sum of the terms becomes linear instead! Amazing!

    @purplenanite@purplenanite Жыл бұрын
  • had several confusions... then i realized that the date arithmetic revealed critical context.

    @thomasmackay4@thomasmackay4 Жыл бұрын
  • If only every channel would do an April Fool's day video. I'd give you extra points if I could for the fact that you used my favorite esoteric language. All that's needed is the program to generate a BF program from an input algorithm. That would really sell it.

    @anon_y_mousse@anon_y_mousse Жыл бұрын
  • is this the same situaiton as the sorting algorithm that just makes a new cpu thread for each element and just tells them to wait as long as their input number says? yeah its the best possible time complexity, but thats not necessarily a good thing.

    @Tumbolisu@Tumbolisu Жыл бұрын
    • Sleep sort!

      @kangalio@kangalio Жыл бұрын
  • Great video! 🤣😂 We are eager to see its first commercial implementation. 😂😂

    @AlessandroBottoni@AlessandroBottoni Жыл бұрын
    • Coming soon!

      @PolylogCS@PolylogCS Жыл бұрын
  • I see, some universal turing machine stuff is coming

    @johannesrauch8931@johannesrauch8931 Жыл бұрын
  • this is... beautiful.

    @2kadrenojunkiegaming655@2kadrenojunkiegaming65521 күн бұрын
  • omg the thumbnail is so good

    @9fran9rosatti9@9fran9rosatti9 Жыл бұрын
  • Universal search!

    @johnchessant3012@johnchessant3012 Жыл бұрын
  • I wonder how does this algorithm deal with Encabulator?

    @mihajloantic4422@mihajloantic4422 Жыл бұрын
  • Tha computer program either has all the composite numbers precompiled and looks up the solution (or that its a prime number) or its just a composition of all the bf programs starting with the shortest one.

    @TymexComputing@TymexComputing4 күн бұрын
  • So I am now waiting for getting answer of 15 for last 5 days, should I continue?? 😢

    @rutvikrana512@rutvikrana512 Жыл бұрын
  • Took a course with Levin, he's a genius

    @aidangomez9852@aidangomez9852 Жыл бұрын
  • Get your algorithms! We have the finest and freshest algorithms! Step right up!

    @reversefulfillment9189@reversefulfillment91896 ай бұрын
  • Small mistake.size of the number with d digits is 9*10^(d-1). Most significant digit cannot zero right? It will have only 9 possible digits.

    @rohithpokala@rohithpokala8 ай бұрын
  • I thought this was going to be about Shor's algorithm. Nice surprise 😊

    @hansisbrucker813@hansisbrucker813 Жыл бұрын
  • Can't believe I fell for it...

    @casenc@casenc Жыл бұрын
  • I'll bet if someone wrote that code in assembly he'd crack rsa

    @vnc.t@vnc.t Жыл бұрын
  • I saw mention of the "Brainfuck" language, so I ran away screaming.

    @oresteszoupanos@oresteszoupanos Жыл бұрын
  • So if I find a d^2 factoring algorithm I shall worry for my life or expect a Field medal?

    @VCC1316@VCC1316 Жыл бұрын
    • Both.

      @PolylogCS@PolylogCS Жыл бұрын
  • @scottwilliams895@scottwilliams895 Жыл бұрын
  • I'm so glad that viewing your video wasn't a waste of my time. --

    @personanongrata987@personanongrata987 Жыл бұрын
  • I knew when I saw BrainFuck in the code this was gonna be a wild one

    @bailey6112@bailey61126 ай бұрын
  • What is the memory complexity of this algorithm?

    @logician1234@logician123410 ай бұрын
  • Wow! Does this prove that P = PN?

    @Nioub@Nioub Жыл бұрын
    • Factorization is not known to be np complete, so regardless of whether the alg is polytime, it wouldn’t be enough to prove p=np

      @toebel@toebel Жыл бұрын
    • (Or rather I should say, *wasnt* known to be NP complete. I came up with quite a marvelous proof this morning…)

      @toebel@toebel Жыл бұрын
    • Turns out, you can use this trick also to get asymptotically optimal algorithm for any NP complete problem! (but it gets a bit more tricky, for factoring it's easier to explain what's happening)

      @PolylogCS@PolylogCS Жыл бұрын
  • I don't quite get it. It draws a large triangle with two dots at the end of each line and at some point freezes, it acts the same with any input.

    @Amonimus@Amonimus Жыл бұрын
    • The triangle is there to help you understand what's happening, but try to look at the code, too!

      @PolylogCS@PolylogCS Жыл бұрын
  • woah

    @aze4308@aze4308 Жыл бұрын
  • Me watching the video on April 5, trying to figure out why a brainfck interpreter is relevant to factorization

    @lefteriseleftheriades7381@lefteriseleftheriades7381 Жыл бұрын
  • 8 months passed so far, any news on this?

    @HoSza1@HoSza14 ай бұрын
  • I would but I'm a pretty average dev lol so I doubt I could make it better 😂😂😂 . But, this is great thanks

    @handsanitizer2457@handsanitizer2457 Жыл бұрын
  • Anyone else reading these types of ads in the smug yet smarmy and sultry voice of a Hollywood commercial advertisement? "He breaks RSA with this one trick, Computer scientists hate him!"

    @Darth_Bateman@Darth_Bateman Жыл бұрын
  • my PC reported this: File "it.py", line 11 def __init__(self, program: str, input: str): ^ SyntaxError: invalid syntax

    @tokajileo5928@tokajileo59283 ай бұрын
  • NOT ME NOT ON APRIL FIRST! NEVER! EVER! NEVER ME!

    @SK_1337@SK_1337 Жыл бұрын
  • Fermat invented this solution before, even if he didn't have the space to write it on his napkin

    @347573@347573 Жыл бұрын
  • Wow and this was created without any understanding of the general number field sieve. 😆

    @simonstebbins3838@simonstebbins3838 Жыл бұрын
  • i wonder why this video was uploaded 1st april :)

    @nonsencephilosophy@nonsencephilosophy5 ай бұрын
  • i forget april 1st videos still exist after april the 1st. i can get fooled all year round (;

    @rujon288@rujon28815 күн бұрын
  • Is it true ?

    @aashsyed1277@aashsyed1277 Жыл бұрын
  • They said that it couldn’t be done.

    @Stopinvadingmyhardware@Stopinvadingmyhardware Жыл бұрын
  • Le risultanze della tavola di lettura , ASCII.

    @angelamusiemangela@angelamusiemangela Жыл бұрын
  • You didnt get me... Its April 1th. Nice try though

    @otbot8925@otbot8925 Жыл бұрын
    • People still play that game?

      @Stopinvadingmyhardware@Stopinvadingmyhardware Жыл бұрын
    • @@Stopinvadingmyhardware this video is a material proof

      @codeway4374@codeway4374 Жыл бұрын
    • I actually watched this on the 13th of April. It took me a while to appreciate the humor of it. It made me smile. :)

      @ryanqvincent144@ryanqvincent144 Жыл бұрын
  • I got kyphosis watching this.

    @Dardasha_Studios@Dardasha_Studios Жыл бұрын
  • I recommend optimizing python more. This could probably go a lot fast by eliminating while loops, and going with for loops instead, which run in C code in the python runtime. I'm not sure what all that brainfuck is about, but whatever... Might try finding a more optimal way to evaluate commands than branching all over the place.... Slow. And, just use sets instead of lists... Your eating memory.

    @JonDisnard@JonDisnard Жыл бұрын
  • The words might be hint brainfuck and universal search.

    @priyanshugoel3030@priyanshugoel3030 Жыл бұрын
  • why do programmers have to name classes such weird names *1:28*

    @trinitrotolueneRBLX@trinitrotolueneRBLX8 ай бұрын
  • So, you didn't even TRY to come up with a good factoring algorithm? Also, how can we "know" that there isnt an algorithm which gets better than 10^d factoring time?

    @simonwillover4175@simonwillover4175 Жыл бұрын
    • There are algorithms that do better than 10^d... (e.g the general number field sieve) - this whole video is meant as a joke.

      @pigworts2@pigworts2 Жыл бұрын
    • this is the universal search algorithm, which can be mathematically proven to be optimal it's also extremely impractical

      @the_cheese_cultist@the_cheese_cultist10 ай бұрын
  • Actually the basic flaw in their assertion, is that all solution paths are similar, and have the same algorithmic costs. This is clearly false in that brute force trials, sieve, statistical attacks, and symbolic SAT attacks all have very different solution complexities. For example, certain classes of two prime products can be solved by SAT in a few minutes or hours, others have no solution via SAT like most of the RSA numbers. When SAT can factor certain 512 bit two prime products in hours, then it's pretty clear the assertion made in this work is flawed, IE their algorithm is not the lower bound. This is further complicated by the fact that precompuation attacks will also reduce the time needed to solve a particular class of factoring, by using precomputed partial solutions that are then easily brute forced to solve the remaining portion of the factors. Rainbow tables are one example, which are used to crack passwords which have a similar computational complexity as certain factoring algorithms.

    @totally_lost1602@totally_lost16026 ай бұрын
  • I'm not a programmer. Is "brainfuckexecution" a system command?

    @briankleinschmidt3664@briankleinschmidt3664 Жыл бұрын
    • Yes, indeed 😂

      @parryadrian@parryadrian Жыл бұрын
  • haha blazni

    @hhehe24@hhehe24 Жыл бұрын
  • I havent watched the video yet, but im guessing its social engineering.

    @danielfaller5617@danielfaller5617 Жыл бұрын
    • Not really, it's legit! Go and watch it, I think you'll enjoy it!

      @PolylogCS@PolylogCS Жыл бұрын
  • You can't keep this secret for yourself

    @supposta6860@supposta6860 Жыл бұрын
  • The Python listing that starts at 1:28 has nothing to do with the prime algorithm or the narration at this point. What gives? Did you insert the wrong file into the video?

    @JohnDlugosz@JohnDlugosz Жыл бұрын
    • April 1st, 2023

      @einSteppenwolf@einSteppenwolf Жыл бұрын
  • Or at least you think you can. As maths are not perfect.

    @RicardoSantos-oz3uj@RicardoSantos-oz3uj7 ай бұрын
  • ok, but how will you do numbers with more than two factors, like 21790298087899097494373776975583044612659582164942154887813609701190909992130650129784168219399742498394590?

    @SoI-@SoI- Жыл бұрын
KZhead