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;
- 11 111 111 011 265 ÷ 2 = 5 555 555 505 632 + 1;
- 5 555 555 505 632 ÷ 2 = 2 777 777 752 816 + 0;
- 2 777 777 752 816 ÷ 2 = 1 388 888 876 408 + 0;
- 1 388 888 876 408 ÷ 2 = 694 444 438 204 + 0;
- 694 444 438 204 ÷ 2 = 347 222 219 102 + 0;
- 347 222 219 102 ÷ 2 = 173 611 109 551 + 0;
- 173 611 109 551 ÷ 2 = 86 805 554 775 + 1;
- 86 805 554 775 ÷ 2 = 43 402 777 387 + 1;
- 43 402 777 387 ÷ 2 = 21 701 388 693 + 1;
- 21 701 388 693 ÷ 2 = 10 850 694 346 + 1;
- 10 850 694 346 ÷ 2 = 5 425 347 173 + 0;
- 5 425 347 173 ÷ 2 = 2 712 673 586 + 1;
- 2 712 673 586 ÷ 2 = 1 356 336 793 + 0;
- 1 356 336 793 ÷ 2 = 678 168 396 + 1;
- 678 168 396 ÷ 2 = 339 084 198 + 0;
- 339 084 198 ÷ 2 = 169 542 099 + 0;
- 169 542 099 ÷ 2 = 84 771 049 + 1;
- 84 771 049 ÷ 2 = 42 385 524 + 1;
- 42 385 524 ÷ 2 = 21 192 762 + 0;
- 21 192 762 ÷ 2 = 10 596 381 + 0;
- 10 596 381 ÷ 2 = 5 298 190 + 1;
- 5 298 190 ÷ 2 = 2 649 095 + 0;
- 2 649 095 ÷ 2 = 1 324 547 + 1;
- 1 324 547 ÷ 2 = 662 273 + 1;
- 662 273 ÷ 2 = 331 136 + 1;
- 331 136 ÷ 2 = 165 568 + 0;
- 165 568 ÷ 2 = 82 784 + 0;
- 82 784 ÷ 2 = 41 392 + 0;
- 41 392 ÷ 2 = 20 696 + 0;
- 20 696 ÷ 2 = 10 348 + 0;
- 10 348 ÷ 2 = 5 174 + 0;
- 5 174 ÷ 2 = 2 587 + 0;
- 2 587 ÷ 2 = 1 293 + 1;
- 1 293 ÷ 2 = 646 + 1;
- 646 ÷ 2 = 323 + 0;
- 323 ÷ 2 = 161 + 1;
- 161 ÷ 2 = 80 + 1;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 5 ÷ 2 = 2 + 1;
- 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.
11 111 111 011 265(10) = 1010 0001 1011 0000 0001 1101 0011 0010 1011 1100 0001(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 44.
- 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, 44,
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 11 111 111 011 265(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.