Tagged Questions

25
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
105 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 ...
0
votes
2answers
57 views

How to represent -0 in binary

This question concerns converting a floating point number that is less than abs(1) and negative to 32.32 format, for example: -0.1234. When this is converted to 32.32, the integer portion and ...