What are the required steps to convert base 10 decimal system
number 1 100 000 000 000 735 to base 2 unsigned binary equivalent?
- A number written in base ten, or a decimal system number, is a number written using the digits 0 through 9. A number written in base two, or a binary system number, 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 100 000 000 000 735 ÷ 2 = 550 000 000 000 367 + 1;
- 550 000 000 000 367 ÷ 2 = 275 000 000 000 183 + 1;
- 275 000 000 000 183 ÷ 2 = 137 500 000 000 091 + 1;
- 137 500 000 000 091 ÷ 2 = 68 750 000 000 045 + 1;
- 68 750 000 000 045 ÷ 2 = 34 375 000 000 022 + 1;
- 34 375 000 000 022 ÷ 2 = 17 187 500 000 011 + 0;
- 17 187 500 000 011 ÷ 2 = 8 593 750 000 005 + 1;
- 8 593 750 000 005 ÷ 2 = 4 296 875 000 002 + 1;
- 4 296 875 000 002 ÷ 2 = 2 148 437 500 001 + 0;
- 2 148 437 500 001 ÷ 2 = 1 074 218 750 000 + 1;
- 1 074 218 750 000 ÷ 2 = 537 109 375 000 + 0;
- 537 109 375 000 ÷ 2 = 268 554 687 500 + 0;
- 268 554 687 500 ÷ 2 = 134 277 343 750 + 0;
- 134 277 343 750 ÷ 2 = 67 138 671 875 + 0;
- 67 138 671 875 ÷ 2 = 33 569 335 937 + 1;
- 33 569 335 937 ÷ 2 = 16 784 667 968 + 1;
- 16 784 667 968 ÷ 2 = 8 392 333 984 + 0;
- 8 392 333 984 ÷ 2 = 4 196 166 992 + 0;
- 4 196 166 992 ÷ 2 = 2 098 083 496 + 0;
- 2 098 083 496 ÷ 2 = 1 049 041 748 + 0;
- 1 049 041 748 ÷ 2 = 524 520 874 + 0;
- 524 520 874 ÷ 2 = 262 260 437 + 0;
- 262 260 437 ÷ 2 = 131 130 218 + 1;
- 131 130 218 ÷ 2 = 65 565 109 + 0;
- 65 565 109 ÷ 2 = 32 782 554 + 1;
- 32 782 554 ÷ 2 = 16 391 277 + 0;
- 16 391 277 ÷ 2 = 8 195 638 + 1;
- 8 195 638 ÷ 2 = 4 097 819 + 0;
- 4 097 819 ÷ 2 = 2 048 909 + 1;
- 2 048 909 ÷ 2 = 1 024 454 + 1;
- 1 024 454 ÷ 2 = 512 227 + 0;
- 512 227 ÷ 2 = 256 113 + 1;
- 256 113 ÷ 2 = 128 056 + 1;
- 128 056 ÷ 2 = 64 028 + 0;
- 64 028 ÷ 2 = 32 014 + 0;
- 32 014 ÷ 2 = 16 007 + 0;
- 16 007 ÷ 2 = 8 003 + 1;
- 8 003 ÷ 2 = 4 001 + 1;
- 4 001 ÷ 2 = 2 000 + 1;
- 2 000 ÷ 2 = 1 000 + 0;
- 1 000 ÷ 2 = 500 + 0;
- 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 100 000 000 000 735(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 100 000 000 000 735 (base 10) = 11 1110 1000 0111 0001 1011 0101 0100 0000 1100 0010 1101 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.