Tagged Questions

27
votes
10answers
7k views

Why is two's complement used to represent negative numbers?

I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1? -1 is represented by 11111111 (two's complement) rather than (to ...
0
votes
3answers
122 views

Subtraction of 2 negative integer (two's complement) never overflowing

I came across this in a computer architecture textbook: Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow. The textbook ...