How can I convert 2's complement to decimal?

130k Views Asked by At

Suppose I have the 2's complement, negative number 1111 1111 1011 0101 (0xFFBB5). How can I represent this as a decimal number in base 10?

2

There are 2 best solutions below

0
On BEST ANSWER

If $x$ is an $n$ digit number written in two's complement, then ${\small\sim}x +1 = -x$, where ${\small\sim}x$ is the $n$-digit binary NOT of $x$. In your case, ~0xFFBB5 + 1 = 0x0044B = 1099, so your number is $-1099$.

1
On

Here is the process to convert a negative two's complement number back to decimal:

(1) flip all the bits,

(2) add 1, and

(3) interpret the result as a binary representation of the magnitude and add a negative sign

So, for your example, we have:

$$1111~1111~1011~0101 \xrightarrow{(1)} 0000~0000~0100~1010 \xrightarrow{(2)} 0000~0000~0100~1011 \xrightarrow{(3)} -75$$

It looks like you wrote the wrong binary and meant:

$$1111~1111~1011~1011~0101 \xrightarrow{(1)} 0000~0000~0100~0100~1010 \xrightarrow{(2)} 0000~0000~0100~0100~1011 \xrightarrow{(3)} -1099$$

Of course, in Hex, you can invert all the bits and add 1 and take a negative magnitude.

Regards