What are the required steps to convert base 10 decimal system
number 11 101 001 111 240 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 111 240 ÷ 2 = 5 550 500 555 620 + 0;
- 5 550 500 555 620 ÷ 2 = 2 775 250 277 810 + 0;
- 2 775 250 277 810 ÷ 2 = 1 387 625 138 905 + 0;
- 1 387 625 138 905 ÷ 2 = 693 812 569 452 + 1;
- 693 812 569 452 ÷ 2 = 346 906 284 726 + 0;
- 346 906 284 726 ÷ 2 = 173 453 142 363 + 0;
- 173 453 142 363 ÷ 2 = 86 726 571 181 + 1;
- 86 726 571 181 ÷ 2 = 43 363 285 590 + 1;
- 43 363 285 590 ÷ 2 = 21 681 642 795 + 0;
- 21 681 642 795 ÷ 2 = 10 840 821 397 + 1;
- 10 840 821 397 ÷ 2 = 5 420 410 698 + 1;
- 5 420 410 698 ÷ 2 = 2 710 205 349 + 0;
- 2 710 205 349 ÷ 2 = 1 355 102 674 + 1;
- 1 355 102 674 ÷ 2 = 677 551 337 + 0;
- 677 551 337 ÷ 2 = 338 775 668 + 1;
- 338 775 668 ÷ 2 = 169 387 834 + 0;
- 169 387 834 ÷ 2 = 84 693 917 + 0;
- 84 693 917 ÷ 2 = 42 346 958 + 1;
- 42 346 958 ÷ 2 = 21 173 479 + 0;
- 21 173 479 ÷ 2 = 10 586 739 + 1;
- 10 586 739 ÷ 2 = 5 293 369 + 1;
- 5 293 369 ÷ 2 = 2 646 684 + 1;
- 2 646 684 ÷ 2 = 1 323 342 + 0;
- 1 323 342 ÷ 2 = 661 671 + 0;
- 661 671 ÷ 2 = 330 835 + 1;
- 330 835 ÷ 2 = 165 417 + 1;
- 165 417 ÷ 2 = 82 708 + 1;
- 82 708 ÷ 2 = 41 354 + 0;
- 41 354 ÷ 2 = 20 677 + 0;
- 20 677 ÷ 2 = 10 338 + 1;
- 10 338 ÷ 2 = 5 169 + 0;
- 5 169 ÷ 2 = 2 584 + 1;
- 2 584 ÷ 2 = 1 292 + 0;
- 1 292 ÷ 2 = 646 + 0;
- 646 ÷ 2 = 323 + 0;
- 323 ÷ 2 = 161 + 1;
- 161 ÷ 2 = 80 + 1;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 5 ÷ 2 = 2 + 1;
- 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 111 240(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 101 001 111 240 (base 10) = 1010 0001 1000 1010 0111 0011 1010 0101 0110 1100 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.