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;
- 1 110 100 010 564 ÷ 2 = 555 050 005 282 + 0;
- 555 050 005 282 ÷ 2 = 277 525 002 641 + 0;
- 277 525 002 641 ÷ 2 = 138 762 501 320 + 1;
- 138 762 501 320 ÷ 2 = 69 381 250 660 + 0;
- 69 381 250 660 ÷ 2 = 34 690 625 330 + 0;
- 34 690 625 330 ÷ 2 = 17 345 312 665 + 0;
- 17 345 312 665 ÷ 2 = 8 672 656 332 + 1;
- 8 672 656 332 ÷ 2 = 4 336 328 166 + 0;
- 4 336 328 166 ÷ 2 = 2 168 164 083 + 0;
- 2 168 164 083 ÷ 2 = 1 084 082 041 + 1;
- 1 084 082 041 ÷ 2 = 542 041 020 + 1;
- 542 041 020 ÷ 2 = 271 020 510 + 0;
- 271 020 510 ÷ 2 = 135 510 255 + 0;
- 135 510 255 ÷ 2 = 67 755 127 + 1;
- 67 755 127 ÷ 2 = 33 877 563 + 1;
- 33 877 563 ÷ 2 = 16 938 781 + 1;
- 16 938 781 ÷ 2 = 8 469 390 + 1;
- 8 469 390 ÷ 2 = 4 234 695 + 0;
- 4 234 695 ÷ 2 = 2 117 347 + 1;
- 2 117 347 ÷ 2 = 1 058 673 + 1;
- 1 058 673 ÷ 2 = 529 336 + 1;
- 529 336 ÷ 2 = 264 668 + 0;
- 264 668 ÷ 2 = 132 334 + 0;
- 132 334 ÷ 2 = 66 167 + 0;
- 66 167 ÷ 2 = 33 083 + 1;
- 33 083 ÷ 2 = 16 541 + 1;
- 16 541 ÷ 2 = 8 270 + 1;
- 8 270 ÷ 2 = 4 135 + 0;
- 4 135 ÷ 2 = 2 067 + 1;
- 2 067 ÷ 2 = 1 033 + 1;
- 1 033 ÷ 2 = 516 + 1;
- 516 ÷ 2 = 258 + 0;
- 258 ÷ 2 = 129 + 0;
- 129 ÷ 2 = 64 + 1;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 2 ÷ 2 = 1 + 0;
- 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.
1 110 100 010 564(10) = 1 0000 0010 0111 0111 0001 1101 1110 0110 0100 0100(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 41.
- 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, 41,
3) so that the first bit (leftmost) could be zero
(we deal with a positive number at this moment)
=== is: 64.
4. Get the positive binary computer representation on 64 bits (8 Bytes):
If needed, add extra 0s in front (to the left) of the base 2 number, up to the required length, 64.
Decimal Number 1 110 100 010 564(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.