Multiplication algorithm: Difference between revisions

Content deleted Content added
Line 295:
 
Karatsuba multiplication is an O(''n''<sup>log<sub>2</sub>3</sup>) ≈ O(''n''<sup>1.585</sup>) divide and conquare 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.