What are the required steps to convert base 10 decimal system
number 11 101 001 001 110 094 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 101 001 001 110 094 ÷ 2 = 5 550 500 500 555 047 + 0;
- 5 550 500 500 555 047 ÷ 2 = 2 775 250 250 277 523 + 1;
- 2 775 250 250 277 523 ÷ 2 = 1 387 625 125 138 761 + 1;
- 1 387 625 125 138 761 ÷ 2 = 693 812 562 569 380 + 1;
- 693 812 562 569 380 ÷ 2 = 346 906 281 284 690 + 0;
- 346 906 281 284 690 ÷ 2 = 173 453 140 642 345 + 0;
- 173 453 140 642 345 ÷ 2 = 86 726 570 321 172 + 1;
- 86 726 570 321 172 ÷ 2 = 43 363 285 160 586 + 0;
- 43 363 285 160 586 ÷ 2 = 21 681 642 580 293 + 0;
- 21 681 642 580 293 ÷ 2 = 10 840 821 290 146 + 1;
- 10 840 821 290 146 ÷ 2 = 5 420 410 645 073 + 0;
- 5 420 410 645 073 ÷ 2 = 2 710 205 322 536 + 1;
- 2 710 205 322 536 ÷ 2 = 1 355 102 661 268 + 0;
- 1 355 102 661 268 ÷ 2 = 677 551 330 634 + 0;
- 677 551 330 634 ÷ 2 = 338 775 665 317 + 0;
- 338 775 665 317 ÷ 2 = 169 387 832 658 + 1;
- 169 387 832 658 ÷ 2 = 84 693 916 329 + 0;
- 84 693 916 329 ÷ 2 = 42 346 958 164 + 1;
- 42 346 958 164 ÷ 2 = 21 173 479 082 + 0;
- 21 173 479 082 ÷ 2 = 10 586 739 541 + 0;
- 10 586 739 541 ÷ 2 = 5 293 369 770 + 1;
- 5 293 369 770 ÷ 2 = 2 646 684 885 + 0;
- 2 646 684 885 ÷ 2 = 1 323 342 442 + 1;
- 1 323 342 442 ÷ 2 = 661 671 221 + 0;
- 661 671 221 ÷ 2 = 330 835 610 + 1;
- 330 835 610 ÷ 2 = 165 417 805 + 0;
- 165 417 805 ÷ 2 = 82 708 902 + 1;
- 82 708 902 ÷ 2 = 41 354 451 + 0;
- 41 354 451 ÷ 2 = 20 677 225 + 1;
- 20 677 225 ÷ 2 = 10 338 612 + 1;
- 10 338 612 ÷ 2 = 5 169 306 + 0;
- 5 169 306 ÷ 2 = 2 584 653 + 0;
- 2 584 653 ÷ 2 = 1 292 326 + 1;
- 1 292 326 ÷ 2 = 646 163 + 0;
- 646 163 ÷ 2 = 323 081 + 1;
- 323 081 ÷ 2 = 161 540 + 1;
- 161 540 ÷ 2 = 80 770 + 0;
- 80 770 ÷ 2 = 40 385 + 0;
- 40 385 ÷ 2 = 20 192 + 1;
- 20 192 ÷ 2 = 10 096 + 0;
- 10 096 ÷ 2 = 5 048 + 0;
- 5 048 ÷ 2 = 2 524 + 0;
- 2 524 ÷ 2 = 1 262 + 0;
- 1 262 ÷ 2 = 631 + 0;
- 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 101 001 001 110 094(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 101 001 001 110 094 (base 10) = 10 0111 0111 0000 0100 1101 0011 0101 0101 0010 1000 1010 0100 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.