What are the required steps to convert base 10 decimal system
number 111 011 101 010 101 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;
- 111 011 101 010 101 ÷ 2 = 55 505 550 505 050 + 1;
- 55 505 550 505 050 ÷ 2 = 27 752 775 252 525 + 0;
- 27 752 775 252 525 ÷ 2 = 13 876 387 626 262 + 1;
- 13 876 387 626 262 ÷ 2 = 6 938 193 813 131 + 0;
- 6 938 193 813 131 ÷ 2 = 3 469 096 906 565 + 1;
- 3 469 096 906 565 ÷ 2 = 1 734 548 453 282 + 1;
- 1 734 548 453 282 ÷ 2 = 867 274 226 641 + 0;
- 867 274 226 641 ÷ 2 = 433 637 113 320 + 1;
- 433 637 113 320 ÷ 2 = 216 818 556 660 + 0;
- 216 818 556 660 ÷ 2 = 108 409 278 330 + 0;
- 108 409 278 330 ÷ 2 = 54 204 639 165 + 0;
- 54 204 639 165 ÷ 2 = 27 102 319 582 + 1;
- 27 102 319 582 ÷ 2 = 13 551 159 791 + 0;
- 13 551 159 791 ÷ 2 = 6 775 579 895 + 1;
- 6 775 579 895 ÷ 2 = 3 387 789 947 + 1;
- 3 387 789 947 ÷ 2 = 1 693 894 973 + 1;
- 1 693 894 973 ÷ 2 = 846 947 486 + 1;
- 846 947 486 ÷ 2 = 423 473 743 + 0;
- 423 473 743 ÷ 2 = 211 736 871 + 1;
- 211 736 871 ÷ 2 = 105 868 435 + 1;
- 105 868 435 ÷ 2 = 52 934 217 + 1;
- 52 934 217 ÷ 2 = 26 467 108 + 1;
- 26 467 108 ÷ 2 = 13 233 554 + 0;
- 13 233 554 ÷ 2 = 6 616 777 + 0;
- 6 616 777 ÷ 2 = 3 308 388 + 1;
- 3 308 388 ÷ 2 = 1 654 194 + 0;
- 1 654 194 ÷ 2 = 827 097 + 0;
- 827 097 ÷ 2 = 413 548 + 1;
- 413 548 ÷ 2 = 206 774 + 0;
- 206 774 ÷ 2 = 103 387 + 0;
- 103 387 ÷ 2 = 51 693 + 1;
- 51 693 ÷ 2 = 25 846 + 1;
- 25 846 ÷ 2 = 12 923 + 0;
- 12 923 ÷ 2 = 6 461 + 1;
- 6 461 ÷ 2 = 3 230 + 1;
- 3 230 ÷ 2 = 1 615 + 0;
- 1 615 ÷ 2 = 807 + 1;
- 807 ÷ 2 = 403 + 1;
- 403 ÷ 2 = 201 + 1;
- 201 ÷ 2 = 100 + 1;
- 100 ÷ 2 = 50 + 0;
- 50 ÷ 2 = 25 + 0;
- 25 ÷ 2 = 12 + 1;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 3 ÷ 2 = 1 + 1;
- 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.
111 011 101 010 101(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
111 011 101 010 101 (base 10) = 110 0100 1111 0110 1100 1001 0011 1101 1110 1000 1011 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.