Multiplication algorithm: Difference between revisions

Content deleted Content added
m typo - spelling mistake fixed
Line 294:
{{Main|Karatsuba algorithm}}
 
Karatsuba multiplication is an O(''n''<sup>log<sub>2</sub>3</sup>) ≈ O(''n''<sup>1.585</sup>) divide and conquareconquer algorithm, that uses recursion to merge together sub calculations.
 
By rewriting the formula, one makes it possible to do sub calculations / recursion. By doing recursion, one can solve this in a fast manner.