Multiplication algorithm: Difference between revisions

Content deleted Content added
Theta -> Omicron
Grammarbot (talk | contribs)
m Removed space before comma. I am a bot. Please revert my change if it was incorrect. I will notice automatically.
Line 39:
 
: x·0 = 0
: x·y = 2x·(y/2) , if y is divisible by 2
: x·y = x + 2x·(y/2), if y is not divisible by 2 (using integer division)