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 001 001 000 991 ÷ 2 = 500 500 500 495 + 1;
- 500 500 500 495 ÷ 2 = 250 250 250 247 + 1;
- 250 250 250 247 ÷ 2 = 125 125 125 123 + 1;
- 125 125 125 123 ÷ 2 = 62 562 562 561 + 1;
- 62 562 562 561 ÷ 2 = 31 281 281 280 + 1;
- 31 281 281 280 ÷ 2 = 15 640 640 640 + 0;
- 15 640 640 640 ÷ 2 = 7 820 320 320 + 0;
- 7 820 320 320 ÷ 2 = 3 910 160 160 + 0;
- 3 910 160 160 ÷ 2 = 1 955 080 080 + 0;
- 1 955 080 080 ÷ 2 = 977 540 040 + 0;
- 977 540 040 ÷ 2 = 488 770 020 + 0;
- 488 770 020 ÷ 2 = 244 385 010 + 0;
- 244 385 010 ÷ 2 = 122 192 505 + 0;
- 122 192 505 ÷ 2 = 61 096 252 + 1;
- 61 096 252 ÷ 2 = 30 548 126 + 0;
- 30 548 126 ÷ 2 = 15 274 063 + 0;
- 15 274 063 ÷ 2 = 7 637 031 + 1;
- 7 637 031 ÷ 2 = 3 818 515 + 1;
- 3 818 515 ÷ 2 = 1 909 257 + 1;
- 1 909 257 ÷ 2 = 954 628 + 1;
- 954 628 ÷ 2 = 477 314 + 0;
- 477 314 ÷ 2 = 238 657 + 0;
- 238 657 ÷ 2 = 119 328 + 1;
- 119 328 ÷ 2 = 59 664 + 0;
- 59 664 ÷ 2 = 29 832 + 0;
- 29 832 ÷ 2 = 14 916 + 0;
- 14 916 ÷ 2 = 7 458 + 0;
- 7 458 ÷ 2 = 3 729 + 0;
- 3 729 ÷ 2 = 1 864 + 1;
- 1 864 ÷ 2 = 932 + 0;
- 932 ÷ 2 = 466 + 0;
- 466 ÷ 2 = 233 + 0;
- 233 ÷ 2 = 116 + 1;
- 116 ÷ 2 = 58 + 0;
- 58 ÷ 2 = 29 + 0;
- 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.
1 001 001 000 991(10) = 1110 1001 0001 0000 0100 1111 0010 0000 0001 1111(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 40.
- 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, 40,
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 001 001 000 991(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.