algorithms-illuminated icon indicating copy to clipboard operation
algorithms-illuminated copied to clipboard

typo in an equation in introduction.ipynb

Open malmassari opened this issue 4 years ago • 0 comments

There is a typo in Line 52 in the equation in the introduction.ipynb file in the discussion of the recursive implementation of multiplying two integer numbers. The original equation is (Line 52): x.y = (10^ {n/2}.a + b) \times (10^ {n/2}.c + d) = 10^n.ab + 10^{n/2}.(a.d + b.c) + b.d

The correct equation should be: x.y = (10^ {n/2}.a + b) \times (10^ {n/2}.c + d) = 10^n.ac + 10^{n/2}.(a.d + b.c) + b.d

malmassari avatar May 06 '20 21:05 malmassari