[Math] How to borrow from zeroes in binary subtraction (no complements)b

binarydiscrete mathematics

I know you can use complements to subtract, but I want to subtract these two binary numbers without that. I am unsure of how to borrow numbers from zero, check it out:

1000000
-101100

How do I subtract these two binary numbers?

This page borrows from zeros, but doesn't really explain it:
http://sandbox.mc.edu/~bennet/cs110/pm/sub.html

Best Answer

Hint: Without using complements, subtraction in binary is just like decimal subtraction: $a-b=-(b-a)$.

Related Question