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;
- 10 011 101 000 855 ÷ 2 = 5 005 550 500 427 + 1;
- 5 005 550 500 427 ÷ 2 = 2 502 775 250 213 + 1;
- 2 502 775 250 213 ÷ 2 = 1 251 387 625 106 + 1;
- 1 251 387 625 106 ÷ 2 = 625 693 812 553 + 0;
- 625 693 812 553 ÷ 2 = 312 846 906 276 + 1;
- 312 846 906 276 ÷ 2 = 156 423 453 138 + 0;
- 156 423 453 138 ÷ 2 = 78 211 726 569 + 0;
- 78 211 726 569 ÷ 2 = 39 105 863 284 + 1;
- 39 105 863 284 ÷ 2 = 19 552 931 642 + 0;
- 19 552 931 642 ÷ 2 = 9 776 465 821 + 0;
- 9 776 465 821 ÷ 2 = 4 888 232 910 + 1;
- 4 888 232 910 ÷ 2 = 2 444 116 455 + 0;
- 2 444 116 455 ÷ 2 = 1 222 058 227 + 1;
- 1 222 058 227 ÷ 2 = 611 029 113 + 1;
- 611 029 113 ÷ 2 = 305 514 556 + 1;
- 305 514 556 ÷ 2 = 152 757 278 + 0;
- 152 757 278 ÷ 2 = 76 378 639 + 0;
- 76 378 639 ÷ 2 = 38 189 319 + 1;
- 38 189 319 ÷ 2 = 19 094 659 + 1;
- 19 094 659 ÷ 2 = 9 547 329 + 1;
- 9 547 329 ÷ 2 = 4 773 664 + 1;
- 4 773 664 ÷ 2 = 2 386 832 + 0;
- 2 386 832 ÷ 2 = 1 193 416 + 0;
- 1 193 416 ÷ 2 = 596 708 + 0;
- 596 708 ÷ 2 = 298 354 + 0;
- 298 354 ÷ 2 = 149 177 + 0;
- 149 177 ÷ 2 = 74 588 + 1;
- 74 588 ÷ 2 = 37 294 + 0;
- 37 294 ÷ 2 = 18 647 + 0;
- 18 647 ÷ 2 = 9 323 + 1;
- 9 323 ÷ 2 = 4 661 + 1;
- 4 661 ÷ 2 = 2 330 + 1;
- 2 330 ÷ 2 = 1 165 + 0;
- 1 165 ÷ 2 = 582 + 1;
- 582 ÷ 2 = 291 + 0;
- 291 ÷ 2 = 145 + 1;
- 145 ÷ 2 = 72 + 1;
- 72 ÷ 2 = 36 + 0;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 4 ÷ 2 = 2 + 0;
- 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.
10 011 101 000 855(10) = 1001 0001 1010 1110 0100 0001 1110 0111 0100 1001 0111(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 10 011 101 000 855(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.