What are the required steps to convert base 10 decimal system
number 1 011 110 101 009 782 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 011 110 101 009 782 ÷ 2 = 505 555 050 504 891 + 0;
- 505 555 050 504 891 ÷ 2 = 252 777 525 252 445 + 1;
- 252 777 525 252 445 ÷ 2 = 126 388 762 626 222 + 1;
- 126 388 762 626 222 ÷ 2 = 63 194 381 313 111 + 0;
- 63 194 381 313 111 ÷ 2 = 31 597 190 656 555 + 1;
- 31 597 190 656 555 ÷ 2 = 15 798 595 328 277 + 1;
- 15 798 595 328 277 ÷ 2 = 7 899 297 664 138 + 1;
- 7 899 297 664 138 ÷ 2 = 3 949 648 832 069 + 0;
- 3 949 648 832 069 ÷ 2 = 1 974 824 416 034 + 1;
- 1 974 824 416 034 ÷ 2 = 987 412 208 017 + 0;
- 987 412 208 017 ÷ 2 = 493 706 104 008 + 1;
- 493 706 104 008 ÷ 2 = 246 853 052 004 + 0;
- 246 853 052 004 ÷ 2 = 123 426 526 002 + 0;
- 123 426 526 002 ÷ 2 = 61 713 263 001 + 0;
- 61 713 263 001 ÷ 2 = 30 856 631 500 + 1;
- 30 856 631 500 ÷ 2 = 15 428 315 750 + 0;
- 15 428 315 750 ÷ 2 = 7 714 157 875 + 0;
- 7 714 157 875 ÷ 2 = 3 857 078 937 + 1;
- 3 857 078 937 ÷ 2 = 1 928 539 468 + 1;
- 1 928 539 468 ÷ 2 = 964 269 734 + 0;
- 964 269 734 ÷ 2 = 482 134 867 + 0;
- 482 134 867 ÷ 2 = 241 067 433 + 1;
- 241 067 433 ÷ 2 = 120 533 716 + 1;
- 120 533 716 ÷ 2 = 60 266 858 + 0;
- 60 266 858 ÷ 2 = 30 133 429 + 0;
- 30 133 429 ÷ 2 = 15 066 714 + 1;
- 15 066 714 ÷ 2 = 7 533 357 + 0;
- 7 533 357 ÷ 2 = 3 766 678 + 1;
- 3 766 678 ÷ 2 = 1 883 339 + 0;
- 1 883 339 ÷ 2 = 941 669 + 1;
- 941 669 ÷ 2 = 470 834 + 1;
- 470 834 ÷ 2 = 235 417 + 0;
- 235 417 ÷ 2 = 117 708 + 1;
- 117 708 ÷ 2 = 58 854 + 0;
- 58 854 ÷ 2 = 29 427 + 0;
- 29 427 ÷ 2 = 14 713 + 1;
- 14 713 ÷ 2 = 7 356 + 1;
- 7 356 ÷ 2 = 3 678 + 0;
- 3 678 ÷ 2 = 1 839 + 0;
- 1 839 ÷ 2 = 919 + 1;
- 919 ÷ 2 = 459 + 1;
- 459 ÷ 2 = 229 + 1;
- 229 ÷ 2 = 114 + 1;
- 114 ÷ 2 = 57 + 0;
- 57 ÷ 2 = 28 + 1;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 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 011 110 101 009 782(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 011 110 101 009 782 (base 10) = 11 1001 0111 1001 1001 0110 1010 0110 0110 0100 0101 0111 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.