What are the required steps to convert base 10 decimal system
number 101 011 011 109 721 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 011 011 109 721 ÷ 2 = 50 505 505 554 860 + 1;
- 50 505 505 554 860 ÷ 2 = 25 252 752 777 430 + 0;
- 25 252 752 777 430 ÷ 2 = 12 626 376 388 715 + 0;
- 12 626 376 388 715 ÷ 2 = 6 313 188 194 357 + 1;
- 6 313 188 194 357 ÷ 2 = 3 156 594 097 178 + 1;
- 3 156 594 097 178 ÷ 2 = 1 578 297 048 589 + 0;
- 1 578 297 048 589 ÷ 2 = 789 148 524 294 + 1;
- 789 148 524 294 ÷ 2 = 394 574 262 147 + 0;
- 394 574 262 147 ÷ 2 = 197 287 131 073 + 1;
- 197 287 131 073 ÷ 2 = 98 643 565 536 + 1;
- 98 643 565 536 ÷ 2 = 49 321 782 768 + 0;
- 49 321 782 768 ÷ 2 = 24 660 891 384 + 0;
- 24 660 891 384 ÷ 2 = 12 330 445 692 + 0;
- 12 330 445 692 ÷ 2 = 6 165 222 846 + 0;
- 6 165 222 846 ÷ 2 = 3 082 611 423 + 0;
- 3 082 611 423 ÷ 2 = 1 541 305 711 + 1;
- 1 541 305 711 ÷ 2 = 770 652 855 + 1;
- 770 652 855 ÷ 2 = 385 326 427 + 1;
- 385 326 427 ÷ 2 = 192 663 213 + 1;
- 192 663 213 ÷ 2 = 96 331 606 + 1;
- 96 331 606 ÷ 2 = 48 165 803 + 0;
- 48 165 803 ÷ 2 = 24 082 901 + 1;
- 24 082 901 ÷ 2 = 12 041 450 + 1;
- 12 041 450 ÷ 2 = 6 020 725 + 0;
- 6 020 725 ÷ 2 = 3 010 362 + 1;
- 3 010 362 ÷ 2 = 1 505 181 + 0;
- 1 505 181 ÷ 2 = 752 590 + 1;
- 752 590 ÷ 2 = 376 295 + 0;
- 376 295 ÷ 2 = 188 147 + 1;
- 188 147 ÷ 2 = 94 073 + 1;
- 94 073 ÷ 2 = 47 036 + 1;
- 47 036 ÷ 2 = 23 518 + 0;
- 23 518 ÷ 2 = 11 759 + 0;
- 11 759 ÷ 2 = 5 879 + 1;
- 5 879 ÷ 2 = 2 939 + 1;
- 2 939 ÷ 2 = 1 469 + 1;
- 1 469 ÷ 2 = 734 + 1;
- 734 ÷ 2 = 367 + 0;
- 367 ÷ 2 = 183 + 1;
- 183 ÷ 2 = 91 + 1;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 22 ÷ 2 = 11 + 0;
- 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 011 011 109 721(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
101 011 011 109 721 (base 10) = 101 1011 1101 1110 0111 0101 0110 1111 1000 0011 0101 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.