What are the required steps to convert base 10 decimal system
number 11 110 000 011 110 180 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;
- 11 110 000 011 110 180 ÷ 2 = 5 555 000 005 555 090 + 0;
- 5 555 000 005 555 090 ÷ 2 = 2 777 500 002 777 545 + 0;
- 2 777 500 002 777 545 ÷ 2 = 1 388 750 001 388 772 + 1;
- 1 388 750 001 388 772 ÷ 2 = 694 375 000 694 386 + 0;
- 694 375 000 694 386 ÷ 2 = 347 187 500 347 193 + 0;
- 347 187 500 347 193 ÷ 2 = 173 593 750 173 596 + 1;
- 173 593 750 173 596 ÷ 2 = 86 796 875 086 798 + 0;
- 86 796 875 086 798 ÷ 2 = 43 398 437 543 399 + 0;
- 43 398 437 543 399 ÷ 2 = 21 699 218 771 699 + 1;
- 21 699 218 771 699 ÷ 2 = 10 849 609 385 849 + 1;
- 10 849 609 385 849 ÷ 2 = 5 424 804 692 924 + 1;
- 5 424 804 692 924 ÷ 2 = 2 712 402 346 462 + 0;
- 2 712 402 346 462 ÷ 2 = 1 356 201 173 231 + 0;
- 1 356 201 173 231 ÷ 2 = 678 100 586 615 + 1;
- 678 100 586 615 ÷ 2 = 339 050 293 307 + 1;
- 339 050 293 307 ÷ 2 = 169 525 146 653 + 1;
- 169 525 146 653 ÷ 2 = 84 762 573 326 + 1;
- 84 762 573 326 ÷ 2 = 42 381 286 663 + 0;
- 42 381 286 663 ÷ 2 = 21 190 643 331 + 1;
- 21 190 643 331 ÷ 2 = 10 595 321 665 + 1;
- 10 595 321 665 ÷ 2 = 5 297 660 832 + 1;
- 5 297 660 832 ÷ 2 = 2 648 830 416 + 0;
- 2 648 830 416 ÷ 2 = 1 324 415 208 + 0;
- 1 324 415 208 ÷ 2 = 662 207 604 + 0;
- 662 207 604 ÷ 2 = 331 103 802 + 0;
- 331 103 802 ÷ 2 = 165 551 901 + 0;
- 165 551 901 ÷ 2 = 82 775 950 + 1;
- 82 775 950 ÷ 2 = 41 387 975 + 0;
- 41 387 975 ÷ 2 = 20 693 987 + 1;
- 20 693 987 ÷ 2 = 10 346 993 + 1;
- 10 346 993 ÷ 2 = 5 173 496 + 1;
- 5 173 496 ÷ 2 = 2 586 748 + 0;
- 2 586 748 ÷ 2 = 1 293 374 + 0;
- 1 293 374 ÷ 2 = 646 687 + 0;
- 646 687 ÷ 2 = 323 343 + 1;
- 323 343 ÷ 2 = 161 671 + 1;
- 161 671 ÷ 2 = 80 835 + 1;
- 80 835 ÷ 2 = 40 417 + 1;
- 40 417 ÷ 2 = 20 208 + 1;
- 20 208 ÷ 2 = 10 104 + 0;
- 10 104 ÷ 2 = 5 052 + 0;
- 5 052 ÷ 2 = 2 526 + 0;
- 2 526 ÷ 2 = 1 263 + 0;
- 1 263 ÷ 2 = 631 + 1;
- 631 ÷ 2 = 315 + 1;
- 315 ÷ 2 = 157 + 1;
- 157 ÷ 2 = 78 + 1;
- 78 ÷ 2 = 39 + 0;
- 39 ÷ 2 = 19 + 1;
- 19 ÷ 2 = 9 + 1;
- 9 ÷ 2 = 4 + 1;
- 4 ÷ 2 = 2 + 0;
- 2 ÷ 2 = 1 + 0;
- 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.
11 110 000 011 110 180(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 110 000 011 110 180 (base 10) = 10 0111 0111 1000 0111 1100 0111 0100 0001 1101 1110 0111 0010 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.