I'm working on Two's complement addition. Basically I need to show the addition of -27 to +31, with both numbers in binary using 6 bits.
My problem is with carry operations. Maybe I'm not doing it right or something.
-27 is in binary: 111011
+31 is in binary: 011111
The answer I think should be:
+4 is in binary: 000010
Here's what I'm doing:
Carry 1 1 1 1 1
- 27 1 1 1 0 1 1
+ 31 0 1 1 1 1 1
-------------------------
Sum: 0 1 1 0 1 0
Which in my mind computes to 52 not 4.
What am I doing wrong?