Multiplying Integers
Learn how to solve the multiplying integers problem using binary search.
We'll cover the following...
Simple multiplication algorithm
If you’re asked to multiply and and you don’t have a calculator handy, what would you do? You would probably use the multiplication algorithm you learned in elementary school, multiplying each digit from one number with each digit from the other and then adding up the products:
Stop and think: What is the running time of this algorithm applied to two -digit numbers? Can you propose a faster multiplication algorithm?
Since this algorithm multiplies each digit of the first number with each digit of the second number, it requires a quadratic number of multiplications. Can it be done faster, e.g., in ?
In 1960, the great Russian mathematician Andrey Kolmogorov conjectured that the multiplication algorithm we learned in elementary school is asymptotically optimal and, therefore, cannot be improved in the sense of the big- notation. Within a week after he presented this conjecture at a seminar, a 23-year-old student, Anatoly Karatsuba, proved him wrong! We describe the Karatsuba algorithm below.
Karatsuba algorithm
The Karatsuba algorithm is a different (more complex, but fast!) multiplication algorithm. Let’s multiply two-digit numbers and , where is and is :
Here, we have four small multiplications , , , and and it appears it cannot be done with fewer multiplications. Note that we do not count multiplications by and as “real” multiplications as they amount to simply adding zeroes.
Exercise break: Can you multiply and with three multiplications using the hint below?
...