1 3 Karatsuba Multiplication 13 min

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ม.ค. 2017

ความคิดเห็น • 93

  • @PriyaMishra-gj9kl
    @PriyaMishra-gj9kl 6 ปีที่แล้ว +9

    The best explanation i ve ever came accross..Thank you sir

  • @sashavolkova9143
    @sashavolkova9143 5 ปีที่แล้ว +6

    Thank you for this clear explanation!!!

  • @murali9649
    @murali9649 2 ปีที่แล้ว +14

    It could also be
    step 3 =(a-b)*(d-c) and
    Step 4 = step 1 + step 2 + step 3.
    The same results would be obtained.
    Instead of subtracting large numbers after multiplication, it is before multiplication, making multiplicands smaller.
    Helps to calculate manually.
    Number of steps would remain the same so there may not be any appreciable change in execution time in computers.

  • @patrickfulton6405
    @patrickfulton6405 4 ปีที่แล้ว +22

    Great explanation!! Didn’t understand it in class but you helped me get it :)))

  • @aristowow
    @aristowow 6 ปีที่แล้ว +6

    Maybe the best lecture I've ever had

  • @TheDQR
    @TheDQR 5 ปีที่แล้ว +2

    Thanks a lot for this material, keep it up.

  • @m.raflyyanuar9886
    @m.raflyyanuar9886 8 หลายเดือนก่อน

    Beautifully explained!

  • @AL-go2mv
    @AL-go2mv 6 ปีที่แล้ว +2

    Fantastic video and explanation!

  • @vaibhavlodha5398
    @vaibhavlodha5398 6 ปีที่แล้ว +2

    Wonderful explanation. thank you, sir !

  • @ankitakri8431
    @ankitakri8431 4 ปีที่แล้ว

    Thank you sir the best explanation....

  • @crateer
    @crateer 4 ปีที่แล้ว +2

    1:34 - 4:03 is all i needed to know as a refresher. Thanks!

  • @rustam101
    @rustam101 6 ปีที่แล้ว

    thank you! really nice explaination.

  • @davidjiang7929
    @davidjiang7929 3 ปีที่แล้ว

    This channel is a goldmine

  • @KuchhLamhe
    @KuchhLamhe 7 ปีที่แล้ว +28

    It was amazing to watch this video.

  • @Rahul-Nalawade
    @Rahul-Nalawade 5 ปีที่แล้ว +3

    If you try to code using this algorithm, a note:
    X * Y = (Step 1)*(10^(n/2+n/2)) + (Step 4)*10^(n/2) + (Step 2).
    Observe that in Integer programming, n != (n/2+n/2) in case of Odd 'n'.

  • @ademabdelmoula8080
    @ademabdelmoula8080 10 หลายเดือนก่อน +1

    Great Video ! but upon which criteria is the padding happening in 3:30? Why did we add 4 0's to the first, none to the second and 2 to the last?

  • @v1das007
    @v1das007 5 ปีที่แล้ว

    Such a clever little trick.

  • @esrayeniaras9292
    @esrayeniaras9292 4 ปีที่แล้ว

    Great explanation thanks

  • @codingjhames
    @codingjhames 5 หลายเดือนก่อน +1

    we were going well, until the recursion and the agebra started, I got completely lost in that part.

  • @annizheng428
    @annizheng428 3 ปีที่แล้ว

    Very good explanation!!!

  • @fusedglass01
    @fusedglass01 2 ปีที่แล้ว

    Which device are you using to write with as you talk?

  • @calvintey9424
    @calvintey9424 3 ปีที่แล้ว +8

    def karatsuba(x,y):
    if x < 10 or y < 10:
    return x*y
    else:
    n = max(len(str(x)),len(str(y)))
    mid = int(n/2)
    power = 10**mid
    a = x//power
    b = x%power
    c = y//power
    d = y%power
    print(a,b,c,d)
    ac = karatsuba(a,c)
    bd = karatsuba(b,d)
    acpbd = karatsuba(a+b,c+d)-ac-bd
    return ac*(power**2) + bd + (acpbd*power)
    My python implementation of karatsuba

  • @SADHGURUUnplugged
    @SADHGURUUnplugged 5 ปีที่แล้ว

    Useful for gate aspirants.

  • @carlos98132232
    @carlos98132232 3 ปีที่แล้ว +2

    Great video. At first I did not understand it. I had to watch it twice. Being a not native English speaker makes it a bit harder. Anyways, great content, thank you so much!

    • @Sabanar495
      @Sabanar495 3 ปีที่แล้ว +3

      thank you carlos

  • @ninup1668
    @ninup1668 3 ปีที่แล้ว

    How you got that zeros in the last step 5?

  • @rfowkes1185
    @rfowkes1185 ปีที่แล้ว

    Fascinatingly counterintuitive algorithm, but difficult to optimize in reality. Eg. if a,b,c,d are 32-bit integers then (a+b) and (c+d) are 33-bit numbers, and their product is a 66-bit number, requiring extra operations to track, etc.

    • @chrisengland5523
      @chrisengland5523 26 วันที่ผ่านมา

      Yes, assuming that a computer has a single precision multiply instruction giving a double precision result, one can split a (software) double precision multiply into 4 single precision ones and do each of them with the hardware instruction. All you need to do then is to add the four results together with appropriate alignment (ie. shifting).
      So, can you apply Karatsuba's algorithm to reduce the number of multiplications to 3? In theory, yes, but in practice, as you point out the (a+b) and (c+d) parts no longer fit into single precision registers, so the multiply instruction can't be used without a lot of fiddling about. If you're writing it in assembler, it's probably slightly easier than in a high level language, because you've got access to the carry flag from the additions, so it's a case of an extra addition when the carry is 1. Still a nightmare, though. Therefore in practice it's probably easier and quicker just to do the 4 multiplications.

  • @Pedritox0953
    @Pedritox0953 2 ปีที่แล้ว

    Very interesting !!

  • @vikasvenkatraman2645
    @vikasvenkatraman2645 6 ปีที่แล้ว

    Nice :)

  • @gouripanda7517
    @gouripanda7517 5 ปีที่แล้ว

    Where can we find assignment?

  • @dennisdavari5050
    @dennisdavari5050 4 ปีที่แล้ว +1

    Great explanation! In contrast to looking at my script after watching this video I finally understood this topic! :)

  • @gafarraji
    @gafarraji 6 ปีที่แล้ว +3

    Thank you for the lecture, what happens when the numbers are of odd digit? eg multiplying 123 by 456

    • @jatinwadhwa7050
      @jatinwadhwa7050 6 ปีที่แล้ว +2

      a = 01 or 1, b = 23, c = 4, d = 56

  • @lazywarrior
    @lazywarrior 2 ปีที่แล้ว +1

    As always, Gauss saves the day @11:04

  • @muhammadsarimmehdi
    @muhammadsarimmehdi 2 ปีที่แล้ว +7

    I honestly still prefer the old one

    • @alex_turing
      @alex_turing 9 วันที่ผ่านมา

      Computers don't

  • @gackerman99
    @gackerman99 9 หลายเดือนก่อน

    dunno if starting the book with something so frustratingly unintuitive is a great way to make people feel invited into the world of algorithm analysis. i spent most of this chapter feeling stupid.

  • @aterribleyoutuber9039
    @aterribleyoutuber9039 ปีที่แล้ว

    Thanks a lot!

  • @kainaul7215
    @kainaul7215 3 ปีที่แล้ว

    thank you so much

  • @sivabonthada1076
    @sivabonthada1076 2 ปีที่แล้ว

    WOW!!!!

  • @scitwi9164
    @scitwi9164 6 ปีที่แล้ว +1

    Nice explanation :)
    But one thing bothers me: is this really an improvement?
    Sure, there are only 3 multiplications now instead of 4. But suppose that a,b,c,d are digits. So we have:
    a×c is one single-digit multiplication,
    b×d is one single-digit multiplication,
    now we need `a+b` and `c+d`, which are single-digit additions, and each of them can produce 2-DIGIT NUMBERS!
    So the third multiplication is actually another 2-digit by 2-digit multiplication, which is pretty much the same problem we're trying to solve when multiplying (a×10+b)×(c×10+d) ! :P So it will secretly contain three more multiplications and a bunch of additions and subtractions!
    I used digits to demonstrate the problem, but the "digits" can as well be the multi-digit "limbs" of the numbers, e.g. 32-bit integers. So if a,b,c,d are all 32-bit "digits" (base 2³²), then both `a+b` and `c+d` would have to be 31-bit numbers, or use 64-digit pairs of 32-digit numbers, and those will be the numbers multiplied in the last step, right? Which requires them to be decomposed again into four 32-bit "digits" and run through Karatsuba multiplication. But this seems to be circular, because this multiplication can in turn require the multiplication of another 2-digt numbers, and so on... Something is wrong here :P

    • @scitwi9164
      @scitwi9164 6 ปีที่แล้ว

      *"but the "digits" can as well be the multi-digit "limbs" of the numbers, e.g. 32-bit integers."*
      So the problem still stands for "sufficiently large enough".

    • @scitwi9164
      @scitwi9164 6 ปีที่แล้ว

      I wasn't worried about the infinite recursion. I was worried that it won't really be that much of an advantage over the usual multiplication algorithm, and in the worst case, it might actually involve more calculations.

    • @BipinOli90
      @BipinOli90 6 ปีที่แล้ว +9

      In the grade school method, multiplication is O(n^2) but addition and subtraction are O(n). Now in order to improve the complexity of multiplication Karatsuba follows the divide and conquer paradigm. So, the divided tree will be log(n) in height (because on each step it is getting divided by 2 so in log(n) depth it will be completely divided). So leaves of the tree are just 1 digit numbers. So Karatsuba ensures that there will be only 1 digit multiplications and
      addition and subtraction. This makes it O(n*log(n)).
      Remember this:
      (a×10+b)×(c×10+d) gets translated into:
      a*c with place value of 100 + b*d with place value of 1 + (a*d + b*c) with place value of 10
      to find (a*d + b*c) it does (a+b)*(c+d) without multiplying with their place values.
      now (a+b)*(c+d) = ac + ad + bc + bd , so on subtracting ac + bd we get ad + bc as needed.
      This makes 2 multiplications into just 1 multiplication which reduces one extra recursive call.
      So in total there will be 3 recursive multiplications, of numbers with half the digits. After getting results from
      recursive calls they are added together according to their place value.

    • @rashmitpankhania6513
      @rashmitpankhania6513 5 ปีที่แล้ว +1

      time complexity here is O(n^log(n))
      and n is the number of times your are multiplying so for the previous case its O(n^log4)=O(n^2) but after only three multiplications it becomes O(n^log(3))=O(n^1.58)
      so thats an improvement i guess for the large value of n

    • @bonbonpony
      @bonbonpony 3 ปีที่แล้ว

      The way you divided the cake doesn't matter much as long as there's still the same amount of cake in each piece :q
      It doesn't matter if you divide it recursively or just linearly, if the number of calculations stays the same.
      There might be 3 multiplications at each level instead of 4, but if the numbers used for the middle term are longer than those for the first and last term, they will still require more multiplications underneath than before. Which means that we didn't really get rid of any multiplications, just hid them underneath our recursive step (pushed down the tree, if you will).
      In "divide and conquer" algorithms, you don't get advantage from mere dividing the problem recursively - you get the advantage by REUSING COMPUTATIONS from one branch of the tree in another branch, thus making many branches unnecessary. Pushing operations down the tree gives you no advantage at all.
      What would convince me that this is indeed an advantage, is counting the ACTUAL number of operations from ALL levels, taking into account the LENGTHS of numbers in each operation (i.e. number of digits, or number of bits in each), because this is important. If you don't take this into account, then guess what: I can turn your "m digits by n digits" multiplication problem (which is O(m·n) obviously) into a simple 4×4 multiplication problem by splitting the numbers in half and performing just 4 multiplications :P You think that would be a huge advantage too? :P No, of course not! Because each of these multiplications still require (m/2)·(n/2) sub-multiplications on its digits that have been just hidden underneath.

  • @movocode
    @movocode ปีที่แล้ว

    Now we know what is the level of Stanford

  • @somyadeepshrivastava6745
    @somyadeepshrivastava6745 5 ปีที่แล้ว +1

    Is Coursera stanford algorithm course contain same videos

  • @mmfStudent
    @mmfStudent 2 ปีที่แล้ว

    How the trick is related to Gauss? In the original Karatsuba algorithm published in 1960, there are not references to Gauss...

    • @Nynxxx
      @Nynxxx 2 หลายเดือนก่อน

      Gauss was the person that noticed that you can do 3 multiplications instead of 4.

    • @mmfStudent
      @mmfStudent 2 หลายเดือนก่อน

      @@Nynxxx it was Anatolii Karatsuba

  • @finaalfionita8392
    @finaalfionita8392 ปีที่แล้ว

    it doesnt work with 2 digits multiple 2 digits right, does it?

  • @adhikarimahesh2680
    @adhikarimahesh2680 3 ปีที่แล้ว

    What decides padding with 0s

  • @MichelJosephCardin
    @MichelJosephCardin ปีที่แล้ว

    I've been doing this since I was re-multiplying in adulthood; if it was 89 for instance and then I make it ninty if the other number is single and whatever; I've been doing whatever directions that was going to be the easiest and for me; I can see them all and if they were three digit each or what not; well it was just easier to do it the whatever way that I'd had done it in school because you know what; the last time I needed to do it like back then cause it had many digits; well I had needed to remember for a couple of seconds. It just doesn't really happen to us anymore. We'll use a calculator if there are many calculations to solve and there are many other more important things to be concentrating on instead of trying to figure out things to speed up things that really; if everyone were to have had been concentrating on things as much as this person did; we would have gotten not much further; because this should had been noticed at the beginning of our human calculating assessments. Sad it is really how everyone just are impressed by how long it took to realize things that have been overlooked because of all the students have had been "explained that certain things had had been established to having been established that they were to not having any more thoughts on ever again as it would be a waist of time. Well; a big waist of time is to not being spending all of our time on figuring out everything once and for all and maybe just maybe we could have a chance on not needing to lose our lives as aging and such. I don't even want to watch this video; it saddens me to see all of everyone not taking initiatives towards researching our anatomy to it's fullest in a manner that the same amount of time that would have been spent in fifty years; we could do in on or two or three. With more people more hours and more collaborations and many more research groups that deliver; most jobs; if you can't figure it out;' step aside or ask for help and chances are that someone other then you will be able to figure it out and maybe one day you may be the one to figure one of the things out; but we aren't in any position where we can afford to put all of out eggs in that same basket . Sorry but sometimes I just need to vent and try at the same time to wake some of all of you up. Cheers you all. You know that some day soon; you all will be gathering all of my comments that are here and there; and likely be archiving them within a book; I hope it doesn't drag long enough for the makings of a series' worth of books. LOLOL

    • @moatef1886
      @moatef1886 5 หลายเดือนก่อน

      Are you trolling? Or are you just not that bright and have an inflated sense of ego. If you think this algorithm is just multiplying numbers by rounding them to the nearest nice number, doing the regular multiplication, and then accounting for the rounding, you're just wrong. Everybody does this, you're not special. Karatsuba multiplication is fundamentally completely different

  • @MasterMindmars
    @MasterMindmars 4 ปีที่แล้ว +1

    What happens if the quantity of ciphers is odd?

  • @ankitrawat1385
    @ankitrawat1385 6 ปีที่แล้ว +5

    what if the value of 'n' is odd?

  • @paraskevidimoraga5960
    @paraskevidimoraga5960 4 ปีที่แล้ว +2

    How do you decide how many 0s following 2840?

    • @Ak-zm3ce
      @Ak-zm3ce 2 ปีที่แล้ว

      same here

  • @rifatjahan4739
    @rifatjahan4739 2 ปีที่แล้ว

    4:09 should not understand what i did
    me:*understands*
    also me:*confused*

    • @kranberrysucks
      @kranberrysucks ปีที่แล้ว

      you could understand what he did, but there's no way to understand why it works unless you work out the derivation for why subtracting 3 helps here...

  • @KJZheng-or4ik
    @KJZheng-or4ik 5 ปีที่แล้ว +1

    what if x and y don't have same digits of numbers, how to define n?

    • @ankushmenat
      @ankushmenat 5 ปีที่แล้ว +1

      Pad with 0. Or round up the n/2.

    • @thelastcipher9135
      @thelastcipher9135 5 ปีที่แล้ว

      @@ankushmenat I understand padding with zeroes, but why would rounding up n/2 work?

    • @amanranjanverma
      @amanranjanverma 5 ปีที่แล้ว +1

      @@thelastcipher9135 In the case when the number of digits in any number becomes odd.

    • @thelastcipher9135
      @thelastcipher9135 5 ปีที่แล้ว +1

      @@amanranjanverma right. I thought he meant the rounding up works for the lack digit as well which is what confused me. thanks.

    • @codeOdesign
      @codeOdesign 5 ปีที่แล้ว

      padding with 0's on the left side will also make n even.. isnt it?

  • @dd1.d
    @dd1.d 3 ปีที่แล้ว

    what about 123456 * 789123 or 12345 * 123 ??? these are just example I'm talking about numbers with more than 100 digits legnth

  • @cheddargt
    @cheddargt 4 ปีที่แล้ว +1

    You sound like a smarter ben affleck for some reason

  • @gman21xx
    @gman21xx 6 ปีที่แล้ว

    I'm not baffled, it's the distributive property all day long to see that it works. Excellent explanation overall, though.

  • @hesamrezamotiei2259
    @hesamrezamotiei2259 2 หลายเดือนก่อน

    man. the transcript of the video was entirely taken from Algorithms Illuminated part 1. even the word "inscrutable" hahahahahah

  • @pawelloozik
    @pawelloozik 7 ปีที่แล้ว

    5 min and I got it!

  • @franzscheerer
    @franzscheerer 2 ปีที่แล้ว

    It is really super easy, but the algorithm is unknown by most people. I by myself became aware of this alforithm just some weeks ago. I'm really surprised. It is certainly of real importance in cryptography public key algotithms.

  • @cosmicfugue1226
    @cosmicfugue1226 ปีที่แล้ว

    The student, Karatsuba, more intelligent than the teacher!! Must have been a genius.

  • @endykartoshka
    @endykartoshka 2 ปีที่แล้ว

    why

  • @mdsahilkhan6075
    @mdsahilkhan6075 3 ปีที่แล้ว

    are chacha hindi me bolo yaar bak bak kar rahe ho sirf....
    sir me dard ho gya marde.

  • @FredoCorleone
    @FredoCorleone 5 ปีที่แล้ว +1

    Useless detail, bacause the premise of the video was to show that there are other multiplication algorithms in the field, you've proved it as soon as you've shown us the recipe.
    Introducing recursion that way is also bad from a learning standpoint.
    He wanted to show he knows his business or perhaps wanted to show he's damn smart.

    • @joancolmenares9357
      @joancolmenares9357 5 ปีที่แล้ว +4

      This is not an introduction to recursion. Recursion, by this point in the pensum, was already introduced by Introduction to Cumputer Science in the previous term. This is a second-term course.

  • @stormsith5169
    @stormsith5169 ปีที่แล้ว

    This method doesn't work for me i did 5794+4123 I got an answer of 13557162 when its 27114324

    • @nelbr
      @nelbr ปีที่แล้ว

      First of all, 5794 x 4123 = 23888662 (check on a calculator). The actual implementation is:
      57 x 41 = 2337 (step1)
      94 x 23 = 2162 (step2)
      151 x 64 = 9664 (step 3)
      9664 - 2337 - 2162 = 5165 (step 4)
      Result = 23370000 + 2162 + 516500 = 23888662 (step 5)
      Which as you can see, matches the calculator based result.

    • @fuminou3271
      @fuminou3271 ปีที่แล้ว

      @@nelbr why do u add 4 zeros to the back of 2337 and 2 zeros to the back of 5165 when u add it at the end?

    • @nelbr
      @nelbr ปีที่แล้ว +1

      @@fuminou3271 That's how it works. Check step 5 at 3:22 in the video. To explain why we do that, you need to understand what is being explained in the video from 9:50. Basically, you can see on the formula under recall that we are calculating the 3 values represented by ac, ad+bc and bd. Then we need to multiply ac by 10^n and ad+bc by 10^n/2. Since in this multiplication n is 4, then multiplying by 10^n is adding 4 zeros and multiplying by 10^n/2 is adding 2 zeros.