What are the required steps to convert base 10 decimal system
number 101 010 111 272 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;
- 101 010 111 272 ÷ 2 = 50 505 055 636 + 0;
- 50 505 055 636 ÷ 2 = 25 252 527 818 + 0;
- 25 252 527 818 ÷ 2 = 12 626 263 909 + 0;
- 12 626 263 909 ÷ 2 = 6 313 131 954 + 1;
- 6 313 131 954 ÷ 2 = 3 156 565 977 + 0;
- 3 156 565 977 ÷ 2 = 1 578 282 988 + 1;
- 1 578 282 988 ÷ 2 = 789 141 494 + 0;
- 789 141 494 ÷ 2 = 394 570 747 + 0;
- 394 570 747 ÷ 2 = 197 285 373 + 1;
- 197 285 373 ÷ 2 = 98 642 686 + 1;
- 98 642 686 ÷ 2 = 49 321 343 + 0;
- 49 321 343 ÷ 2 = 24 660 671 + 1;
- 24 660 671 ÷ 2 = 12 330 335 + 1;
- 12 330 335 ÷ 2 = 6 165 167 + 1;
- 6 165 167 ÷ 2 = 3 082 583 + 1;
- 3 082 583 ÷ 2 = 1 541 291 + 1;
- 1 541 291 ÷ 2 = 770 645 + 1;
- 770 645 ÷ 2 = 385 322 + 1;
- 385 322 ÷ 2 = 192 661 + 0;
- 192 661 ÷ 2 = 96 330 + 1;
- 96 330 ÷ 2 = 48 165 + 0;
- 48 165 ÷ 2 = 24 082 + 1;
- 24 082 ÷ 2 = 12 041 + 0;
- 12 041 ÷ 2 = 6 020 + 1;
- 6 020 ÷ 2 = 3 010 + 0;
- 3 010 ÷ 2 = 1 505 + 0;
- 1 505 ÷ 2 = 752 + 1;
- 752 ÷ 2 = 376 + 0;
- 376 ÷ 2 = 188 + 0;
- 188 ÷ 2 = 94 + 0;
- 94 ÷ 2 = 47 + 0;
- 47 ÷ 2 = 23 + 1;
- 23 ÷ 2 = 11 + 1;
- 11 ÷ 2 = 5 + 1;
- 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.
101 010 111 272(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
101 010 111 272 (base 10) = 1 0111 1000 0100 1010 1011 1111 1011 0010 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.