Karatsuba is a fast multiplication algorithm discovered by Anatoly Karatsuba in 1960. Given two n-digit numbers, the "grade-school" method of long multiplication has a time complexity of O(n2), whereas the karatsuba algorithm has a time complexity of O(n1.59).
x = 1234
y = 5678
karatsuba(x, y)
- Split each number into numbers with half as many digits
a = 12
b = 34
c = 56
d = 78
- Compute 3 subexpressions from the smaller numbers
ac = a * c
bd = b * d
abcd = (a + b) * (c + d)
- Combine subexpressions to calculate the product
A = ac * 10000
B = (abcd - ac - bd) * 100
C = bd
x * y = A + B + C
Note: The karatsuba algorithm can be applied recursively to calculate each product in the subexpressions. (a * c = karatsuba(a, c)
). When the numbers get smaller than some arbitrary threshold, they are multiplied in the traditional way.