What are the required steps to convert base 10 decimal system
number 10 001 011 101 000 906 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;
- 10 001 011 101 000 906 ÷ 2 = 5 000 505 550 500 453 + 0;
- 5 000 505 550 500 453 ÷ 2 = 2 500 252 775 250 226 + 1;
- 2 500 252 775 250 226 ÷ 2 = 1 250 126 387 625 113 + 0;
- 1 250 126 387 625 113 ÷ 2 = 625 063 193 812 556 + 1;
- 625 063 193 812 556 ÷ 2 = 312 531 596 906 278 + 0;
- 312 531 596 906 278 ÷ 2 = 156 265 798 453 139 + 0;
- 156 265 798 453 139 ÷ 2 = 78 132 899 226 569 + 1;
- 78 132 899 226 569 ÷ 2 = 39 066 449 613 284 + 1;
- 39 066 449 613 284 ÷ 2 = 19 533 224 806 642 + 0;
- 19 533 224 806 642 ÷ 2 = 9 766 612 403 321 + 0;
- 9 766 612 403 321 ÷ 2 = 4 883 306 201 660 + 1;
- 4 883 306 201 660 ÷ 2 = 2 441 653 100 830 + 0;
- 2 441 653 100 830 ÷ 2 = 1 220 826 550 415 + 0;
- 1 220 826 550 415 ÷ 2 = 610 413 275 207 + 1;
- 610 413 275 207 ÷ 2 = 305 206 637 603 + 1;
- 305 206 637 603 ÷ 2 = 152 603 318 801 + 1;
- 152 603 318 801 ÷ 2 = 76 301 659 400 + 1;
- 76 301 659 400 ÷ 2 = 38 150 829 700 + 0;
- 38 150 829 700 ÷ 2 = 19 075 414 850 + 0;
- 19 075 414 850 ÷ 2 = 9 537 707 425 + 0;
- 9 537 707 425 ÷ 2 = 4 768 853 712 + 1;
- 4 768 853 712 ÷ 2 = 2 384 426 856 + 0;
- 2 384 426 856 ÷ 2 = 1 192 213 428 + 0;
- 1 192 213 428 ÷ 2 = 596 106 714 + 0;
- 596 106 714 ÷ 2 = 298 053 357 + 0;
- 298 053 357 ÷ 2 = 149 026 678 + 1;
- 149 026 678 ÷ 2 = 74 513 339 + 0;
- 74 513 339 ÷ 2 = 37 256 669 + 1;
- 37 256 669 ÷ 2 = 18 628 334 + 1;
- 18 628 334 ÷ 2 = 9 314 167 + 0;
- 9 314 167 ÷ 2 = 4 657 083 + 1;
- 4 657 083 ÷ 2 = 2 328 541 + 1;
- 2 328 541 ÷ 2 = 1 164 270 + 1;
- 1 164 270 ÷ 2 = 582 135 + 0;
- 582 135 ÷ 2 = 291 067 + 1;
- 291 067 ÷ 2 = 145 533 + 1;
- 145 533 ÷ 2 = 72 766 + 1;
- 72 766 ÷ 2 = 36 383 + 0;
- 36 383 ÷ 2 = 18 191 + 1;
- 18 191 ÷ 2 = 9 095 + 1;
- 9 095 ÷ 2 = 4 547 + 1;
- 4 547 ÷ 2 = 2 273 + 1;
- 2 273 ÷ 2 = 1 136 + 1;
- 1 136 ÷ 2 = 568 + 0;
- 568 ÷ 2 = 284 + 0;
- 284 ÷ 2 = 142 + 0;
- 142 ÷ 2 = 71 + 0;
- 71 ÷ 2 = 35 + 1;
- 35 ÷ 2 = 17 + 1;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 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.
10 001 011 101 000 906(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 001 011 101 000 906 (base 10) = 10 0011 1000 0111 1101 1101 1101 1010 0001 0001 1110 0100 1100 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.