1. Divide the number repeatedly by 2:
Keep track of each remainder.
Stop when you get a quotient that is equal to zero.
- division = quotient + remainder;
- 2 782 928 842 ÷ 2 = 1 391 464 421 + 0;
- 1 391 464 421 ÷ 2 = 695 732 210 + 1;
- 695 732 210 ÷ 2 = 347 866 105 + 0;
- 347 866 105 ÷ 2 = 173 933 052 + 1;
- 173 933 052 ÷ 2 = 86 966 526 + 0;
- 86 966 526 ÷ 2 = 43 483 263 + 0;
- 43 483 263 ÷ 2 = 21 741 631 + 1;
- 21 741 631 ÷ 2 = 10 870 815 + 1;
- 10 870 815 ÷ 2 = 5 435 407 + 1;
- 5 435 407 ÷ 2 = 2 717 703 + 1;
- 2 717 703 ÷ 2 = 1 358 851 + 1;
- 1 358 851 ÷ 2 = 679 425 + 1;
- 679 425 ÷ 2 = 339 712 + 1;
- 339 712 ÷ 2 = 169 856 + 0;
- 169 856 ÷ 2 = 84 928 + 0;
- 84 928 ÷ 2 = 42 464 + 0;
- 42 464 ÷ 2 = 21 232 + 0;
- 21 232 ÷ 2 = 10 616 + 0;
- 10 616 ÷ 2 = 5 308 + 0;
- 5 308 ÷ 2 = 2 654 + 0;
- 2 654 ÷ 2 = 1 327 + 0;
- 1 327 ÷ 2 = 663 + 1;
- 663 ÷ 2 = 331 + 1;
- 331 ÷ 2 = 165 + 1;
- 165 ÷ 2 = 82 + 1;
- 82 ÷ 2 = 41 + 0;
- 41 ÷ 2 = 20 + 1;
- 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.
2 782 928 842(10) = 1010 0101 1110 0000 0001 1111 1100 1010(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 32.
- 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, 32,
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 2 782 928 842(10) converted to signed binary in one's complement representation: