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 110 101 055 ÷ 2 = 5 555 050 527 + 1;
- 5 555 050 527 ÷ 2 = 2 777 525 263 + 1;
- 2 777 525 263 ÷ 2 = 1 388 762 631 + 1;
- 1 388 762 631 ÷ 2 = 694 381 315 + 1;
- 694 381 315 ÷ 2 = 347 190 657 + 1;
- 347 190 657 ÷ 2 = 173 595 328 + 1;
- 173 595 328 ÷ 2 = 86 797 664 + 0;
- 86 797 664 ÷ 2 = 43 398 832 + 0;
- 43 398 832 ÷ 2 = 21 699 416 + 0;
- 21 699 416 ÷ 2 = 10 849 708 + 0;
- 10 849 708 ÷ 2 = 5 424 854 + 0;
- 5 424 854 ÷ 2 = 2 712 427 + 0;
- 2 712 427 ÷ 2 = 1 356 213 + 1;
- 1 356 213 ÷ 2 = 678 106 + 1;
- 678 106 ÷ 2 = 339 053 + 0;
- 339 053 ÷ 2 = 169 526 + 1;
- 169 526 ÷ 2 = 84 763 + 0;
- 84 763 ÷ 2 = 42 381 + 1;
- 42 381 ÷ 2 = 21 190 + 1;
- 21 190 ÷ 2 = 10 595 + 0;
- 10 595 ÷ 2 = 5 297 + 1;
- 5 297 ÷ 2 = 2 648 + 1;
- 2 648 ÷ 2 = 1 324 + 0;
- 1 324 ÷ 2 = 662 + 0;
- 662 ÷ 2 = 331 + 0;
- 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.
11 110 101 055(10) = 10 1001 0110 0011 0110 1011 0000 0011 1111(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 34.
- 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, 34,
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 110 101 055(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.