9.b).(iii)
Two's Complement, negative number. Represent the absolute value, then flip all bits, then add 1:
-123
Absolute value representation:
123 = 1 X 64 + 1 X 32 + 1 X 16 + 1 X 8 + 0 X 4 + 1 X 2 + 1 X 1, so
0 1 1 1 1 0 1 1
Flip all bits:
1 0 0 0 0 1 0 0
Then add 1
1 0 0 0 0 1 0 1
Check: Absolute value representation plus negative number representation should sum to zero (discard final carry)
1 0 0 0 0 1 0 1
+ 0 1 1 1 1 0 1 1
----------------
0 0 0 0 0 0 0 0
John

My calculator said it, I believe it, that settles it
From
I > Ø