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 100 001 101 010 685 ÷ 2 = 550 000 550 505 342 + 1;
- 550 000 550 505 342 ÷ 2 = 275 000 275 252 671 + 0;
- 275 000 275 252 671 ÷ 2 = 137 500 137 626 335 + 1;
- 137 500 137 626 335 ÷ 2 = 68 750 068 813 167 + 1;
- 68 750 068 813 167 ÷ 2 = 34 375 034 406 583 + 1;
- 34 375 034 406 583 ÷ 2 = 17 187 517 203 291 + 1;
- 17 187 517 203 291 ÷ 2 = 8 593 758 601 645 + 1;
- 8 593 758 601 645 ÷ 2 = 4 296 879 300 822 + 1;
- 4 296 879 300 822 ÷ 2 = 2 148 439 650 411 + 0;
- 2 148 439 650 411 ÷ 2 = 1 074 219 825 205 + 1;
- 1 074 219 825 205 ÷ 2 = 537 109 912 602 + 1;
- 537 109 912 602 ÷ 2 = 268 554 956 301 + 0;
- 268 554 956 301 ÷ 2 = 134 277 478 150 + 1;
- 134 277 478 150 ÷ 2 = 67 138 739 075 + 0;
- 67 138 739 075 ÷ 2 = 33 569 369 537 + 1;
- 33 569 369 537 ÷ 2 = 16 784 684 768 + 1;
- 16 784 684 768 ÷ 2 = 8 392 342 384 + 0;
- 8 392 342 384 ÷ 2 = 4 196 171 192 + 0;
- 4 196 171 192 ÷ 2 = 2 098 085 596 + 0;
- 2 098 085 596 ÷ 2 = 1 049 042 798 + 0;
- 1 049 042 798 ÷ 2 = 524 521 399 + 0;
- 524 521 399 ÷ 2 = 262 260 699 + 1;
- 262 260 699 ÷ 2 = 131 130 349 + 1;
- 131 130 349 ÷ 2 = 65 565 174 + 1;
- 65 565 174 ÷ 2 = 32 782 587 + 0;
- 32 782 587 ÷ 2 = 16 391 293 + 1;
- 16 391 293 ÷ 2 = 8 195 646 + 1;
- 8 195 646 ÷ 2 = 4 097 823 + 0;
- 4 097 823 ÷ 2 = 2 048 911 + 1;
- 2 048 911 ÷ 2 = 1 024 455 + 1;
- 1 024 455 ÷ 2 = 512 227 + 1;
- 512 227 ÷ 2 = 256 113 + 1;
- 256 113 ÷ 2 = 128 056 + 1;
- 128 056 ÷ 2 = 64 028 + 0;
- 64 028 ÷ 2 = 32 014 + 0;
- 32 014 ÷ 2 = 16 007 + 0;
- 16 007 ÷ 2 = 8 003 + 1;
- 8 003 ÷ 2 = 4 001 + 1;
- 4 001 ÷ 2 = 2 000 + 1;
- 2 000 ÷ 2 = 1 000 + 0;
- 1 000 ÷ 2 = 500 + 0;
- 500 ÷ 2 = 250 + 0;
- 250 ÷ 2 = 125 + 0;
- 125 ÷ 2 = 62 + 1;
- 62 ÷ 2 = 31 + 0;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 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.
1 100 001 101 010 685(10) = 11 1110 1000 0111 0001 1111 0110 1110 0000 1101 0110 1111 1101(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 50.
- 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, 50,
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 100 001 101 010 685(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.