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;
- 3 628 725 809 ÷ 2 = 1 814 362 904 + 1;
- 1 814 362 904 ÷ 2 = 907 181 452 + 0;
- 907 181 452 ÷ 2 = 453 590 726 + 0;
- 453 590 726 ÷ 2 = 226 795 363 + 0;
- 226 795 363 ÷ 2 = 113 397 681 + 1;
- 113 397 681 ÷ 2 = 56 698 840 + 1;
- 56 698 840 ÷ 2 = 28 349 420 + 0;
- 28 349 420 ÷ 2 = 14 174 710 + 0;
- 14 174 710 ÷ 2 = 7 087 355 + 0;
- 7 087 355 ÷ 2 = 3 543 677 + 1;
- 3 543 677 ÷ 2 = 1 771 838 + 1;
- 1 771 838 ÷ 2 = 885 919 + 0;
- 885 919 ÷ 2 = 442 959 + 1;
- 442 959 ÷ 2 = 221 479 + 1;
- 221 479 ÷ 2 = 110 739 + 1;
- 110 739 ÷ 2 = 55 369 + 1;
- 55 369 ÷ 2 = 27 684 + 1;
- 27 684 ÷ 2 = 13 842 + 0;
- 13 842 ÷ 2 = 6 921 + 0;
- 6 921 ÷ 2 = 3 460 + 1;
- 3 460 ÷ 2 = 1 730 + 0;
- 1 730 ÷ 2 = 865 + 0;
- 865 ÷ 2 = 432 + 1;
- 432 ÷ 2 = 216 + 0;
- 216 ÷ 2 = 108 + 0;
- 108 ÷ 2 = 54 + 0;
- 54 ÷ 2 = 27 + 0;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 6 ÷ 2 = 3 + 0;
- 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.
3 628 725 809(10) = 1101 1000 0100 1001 1111 0110 0011 0001(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 3 628 725 809(10) converted to signed binary in two's complement representation:
Spaces were used to group digits: for binary, by 4, for decimal, by 3.