What are the required steps to convert base 10 integer
number 1 101 100 100 999 460 to signed binary code (in base 2)?
- A signed integer, written in base ten, or a decimal system number, is a number written using the digits 0 through 9 and the sign, which can be positive (+) or negative (-). If positive, the sign is usually not written. A number written in base two, or binary, is a number written using only the digits 0 and 1.
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;
- 1 101 100 100 999 460 ÷ 2 = 550 550 050 499 730 + 0;
- 550 550 050 499 730 ÷ 2 = 275 275 025 249 865 + 0;
- 275 275 025 249 865 ÷ 2 = 137 637 512 624 932 + 1;
- 137 637 512 624 932 ÷ 2 = 68 818 756 312 466 + 0;
- 68 818 756 312 466 ÷ 2 = 34 409 378 156 233 + 0;
- 34 409 378 156 233 ÷ 2 = 17 204 689 078 116 + 1;
- 17 204 689 078 116 ÷ 2 = 8 602 344 539 058 + 0;
- 8 602 344 539 058 ÷ 2 = 4 301 172 269 529 + 0;
- 4 301 172 269 529 ÷ 2 = 2 150 586 134 764 + 1;
- 2 150 586 134 764 ÷ 2 = 1 075 293 067 382 + 0;
- 1 075 293 067 382 ÷ 2 = 537 646 533 691 + 0;
- 537 646 533 691 ÷ 2 = 268 823 266 845 + 1;
- 268 823 266 845 ÷ 2 = 134 411 633 422 + 1;
- 134 411 633 422 ÷ 2 = 67 205 816 711 + 0;
- 67 205 816 711 ÷ 2 = 33 602 908 355 + 1;
- 33 602 908 355 ÷ 2 = 16 801 454 177 + 1;
- 16 801 454 177 ÷ 2 = 8 400 727 088 + 1;
- 8 400 727 088 ÷ 2 = 4 200 363 544 + 0;
- 4 200 363 544 ÷ 2 = 2 100 181 772 + 0;
- 2 100 181 772 ÷ 2 = 1 050 090 886 + 0;
- 1 050 090 886 ÷ 2 = 525 045 443 + 0;
- 525 045 443 ÷ 2 = 262 522 721 + 1;
- 262 522 721 ÷ 2 = 131 261 360 + 1;
- 131 261 360 ÷ 2 = 65 630 680 + 0;
- 65 630 680 ÷ 2 = 32 815 340 + 0;
- 32 815 340 ÷ 2 = 16 407 670 + 0;
- 16 407 670 ÷ 2 = 8 203 835 + 0;
- 8 203 835 ÷ 2 = 4 101 917 + 1;
- 4 101 917 ÷ 2 = 2 050 958 + 1;
- 2 050 958 ÷ 2 = 1 025 479 + 0;
- 1 025 479 ÷ 2 = 512 739 + 1;
- 512 739 ÷ 2 = 256 369 + 1;
- 256 369 ÷ 2 = 128 184 + 1;
- 128 184 ÷ 2 = 64 092 + 0;
- 64 092 ÷ 2 = 32 046 + 0;
- 32 046 ÷ 2 = 16 023 + 0;
- 16 023 ÷ 2 = 8 011 + 1;
- 8 011 ÷ 2 = 4 005 + 1;
- 4 005 ÷ 2 = 2 002 + 1;
- 2 002 ÷ 2 = 1 001 + 0;
- 1 001 ÷ 2 = 500 + 1;
- 500 ÷ 2 = 250 + 0;
- 250 ÷ 2 = 125 + 0;
- 125 ÷ 2 = 62 + 1;
- 62 ÷ 2 = 31 + 0;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 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 101 100 100 999 460(10) = 11 1110 1001 0111 0001 1101 1000 0110 0001 1101 1001 0010 0100(2)
3. Determine the signed binary number bit length:
The base 2 number's actual length, in bits: 50.
- 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) is reserved for 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, 50,
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:
1 101 100 100 999 460(10) Base 10 integer number converted and written as a signed binary code (in base 2):
1 101 100 100 999 460(10) = 0000 0000 0000 0011 1110 1001 0111 0001 1101 1000 0110 0001 1101 1001 0010 0100
Spaces were used to group digits: for binary, by 4, for decimal, by 3.