What are the required steps to convert base 10 decimal system
number 1 110 000 001 110 381 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 110 000 001 110 381 ÷ 2 = 555 000 000 555 190 + 1;
- 555 000 000 555 190 ÷ 2 = 277 500 000 277 595 + 0;
- 277 500 000 277 595 ÷ 2 = 138 750 000 138 797 + 1;
- 138 750 000 138 797 ÷ 2 = 69 375 000 069 398 + 1;
- 69 375 000 069 398 ÷ 2 = 34 687 500 034 699 + 0;
- 34 687 500 034 699 ÷ 2 = 17 343 750 017 349 + 1;
- 17 343 750 017 349 ÷ 2 = 8 671 875 008 674 + 1;
- 8 671 875 008 674 ÷ 2 = 4 335 937 504 337 + 0;
- 4 335 937 504 337 ÷ 2 = 2 167 968 752 168 + 1;
- 2 167 968 752 168 ÷ 2 = 1 083 984 376 084 + 0;
- 1 083 984 376 084 ÷ 2 = 541 992 188 042 + 0;
- 541 992 188 042 ÷ 2 = 270 996 094 021 + 0;
- 270 996 094 021 ÷ 2 = 135 498 047 010 + 1;
- 135 498 047 010 ÷ 2 = 67 749 023 505 + 0;
- 67 749 023 505 ÷ 2 = 33 874 511 752 + 1;
- 33 874 511 752 ÷ 2 = 16 937 255 876 + 0;
- 16 937 255 876 ÷ 2 = 8 468 627 938 + 0;
- 8 468 627 938 ÷ 2 = 4 234 313 969 + 0;
- 4 234 313 969 ÷ 2 = 2 117 156 984 + 1;
- 2 117 156 984 ÷ 2 = 1 058 578 492 + 0;
- 1 058 578 492 ÷ 2 = 529 289 246 + 0;
- 529 289 246 ÷ 2 = 264 644 623 + 0;
- 264 644 623 ÷ 2 = 132 322 311 + 1;
- 132 322 311 ÷ 2 = 66 161 155 + 1;
- 66 161 155 ÷ 2 = 33 080 577 + 1;
- 33 080 577 ÷ 2 = 16 540 288 + 1;
- 16 540 288 ÷ 2 = 8 270 144 + 0;
- 8 270 144 ÷ 2 = 4 135 072 + 0;
- 4 135 072 ÷ 2 = 2 067 536 + 0;
- 2 067 536 ÷ 2 = 1 033 768 + 0;
- 1 033 768 ÷ 2 = 516 884 + 0;
- 516 884 ÷ 2 = 258 442 + 0;
- 258 442 ÷ 2 = 129 221 + 0;
- 129 221 ÷ 2 = 64 610 + 1;
- 64 610 ÷ 2 = 32 305 + 0;
- 32 305 ÷ 2 = 16 152 + 1;
- 16 152 ÷ 2 = 8 076 + 0;
- 8 076 ÷ 2 = 4 038 + 0;
- 4 038 ÷ 2 = 2 019 + 0;
- 2 019 ÷ 2 = 1 009 + 1;
- 1 009 ÷ 2 = 504 + 1;
- 504 ÷ 2 = 252 + 0;
- 252 ÷ 2 = 126 + 0;
- 126 ÷ 2 = 63 + 0;
- 63 ÷ 2 = 31 + 1;
- 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 110 000 001 110 381(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 110 000 001 110 381 (base 10) = 11 1111 0001 1000 1010 0000 0011 1100 0100 0101 0001 0110 1101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.