1. Divide the number repeatedly by 2:
Keep track of each remainder.
We stop when we get a quotient that is equal to zero.
- division = quotient + remainder;
- 500 000 455 ÷ 2 = 250 000 227 + 1;
- 250 000 227 ÷ 2 = 125 000 113 + 1;
- 125 000 113 ÷ 2 = 62 500 056 + 1;
- 62 500 056 ÷ 2 = 31 250 028 + 0;
- 31 250 028 ÷ 2 = 15 625 014 + 0;
- 15 625 014 ÷ 2 = 7 812 507 + 0;
- 7 812 507 ÷ 2 = 3 906 253 + 1;
- 3 906 253 ÷ 2 = 1 953 126 + 1;
- 1 953 126 ÷ 2 = 976 563 + 0;
- 976 563 ÷ 2 = 488 281 + 1;
- 488 281 ÷ 2 = 244 140 + 1;
- 244 140 ÷ 2 = 122 070 + 0;
- 122 070 ÷ 2 = 61 035 + 0;
- 61 035 ÷ 2 = 30 517 + 1;
- 30 517 ÷ 2 = 15 258 + 1;
- 15 258 ÷ 2 = 7 629 + 0;
- 7 629 ÷ 2 = 3 814 + 1;
- 3 814 ÷ 2 = 1 907 + 0;
- 1 907 ÷ 2 = 953 + 1;
- 953 ÷ 2 = 476 + 1;
- 476 ÷ 2 = 238 + 0;
- 238 ÷ 2 = 119 + 0;
- 119 ÷ 2 = 59 + 1;
- 59 ÷ 2 = 29 + 1;
- 29 ÷ 2 = 14 + 1;
- 14 ÷ 2 = 7 + 0;
- 7 ÷ 2 = 3 + 1;
- 3 ÷ 2 = 1 + 1;
- 1 ÷ 2 = 0 + 1;
2. Construct the base 2 representation of the positive number:
Take all the remainders starting from the bottom of the list constructed above.
500 000 455(10) = 1 1101 1100 1101 0110 0110 1100 0111(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 29.
- A signed binary's bit length must be equal to a power of 2, as of:
- 21 = 2; 22 = 4; 23 = 8; 24 = 16; 25 = 32; 26 = 64; ...
- The first bit (the leftmost) indicates the sign:
- 0 = positive integer number, 1 = negative integer number
The least number that is:
1) a power of 2
2) and is larger than the actual length, 29,
3) so that the first bit (leftmost) could be zero
(we deal with a positive number at this moment)
=== is: 32.
4. Get the positive binary computer representation on 32 bits (4 Bytes):
If needed, add extra 0s in front (to the left) of the base 2 number, up to the required length, 32.
Decimal Number 500 000 455(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.