What are the required steps to convert base 10 decimal system
number 111 101 010 011 385 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 101 010 011 385 ÷ 2 = 55 550 505 005 692 + 1;
- 55 550 505 005 692 ÷ 2 = 27 775 252 502 846 + 0;
- 27 775 252 502 846 ÷ 2 = 13 887 626 251 423 + 0;
- 13 887 626 251 423 ÷ 2 = 6 943 813 125 711 + 1;
- 6 943 813 125 711 ÷ 2 = 3 471 906 562 855 + 1;
- 3 471 906 562 855 ÷ 2 = 1 735 953 281 427 + 1;
- 1 735 953 281 427 ÷ 2 = 867 976 640 713 + 1;
- 867 976 640 713 ÷ 2 = 433 988 320 356 + 1;
- 433 988 320 356 ÷ 2 = 216 994 160 178 + 0;
- 216 994 160 178 ÷ 2 = 108 497 080 089 + 0;
- 108 497 080 089 ÷ 2 = 54 248 540 044 + 1;
- 54 248 540 044 ÷ 2 = 27 124 270 022 + 0;
- 27 124 270 022 ÷ 2 = 13 562 135 011 + 0;
- 13 562 135 011 ÷ 2 = 6 781 067 505 + 1;
- 6 781 067 505 ÷ 2 = 3 390 533 752 + 1;
- 3 390 533 752 ÷ 2 = 1 695 266 876 + 0;
- 1 695 266 876 ÷ 2 = 847 633 438 + 0;
- 847 633 438 ÷ 2 = 423 816 719 + 0;
- 423 816 719 ÷ 2 = 211 908 359 + 1;
- 211 908 359 ÷ 2 = 105 954 179 + 1;
- 105 954 179 ÷ 2 = 52 977 089 + 1;
- 52 977 089 ÷ 2 = 26 488 544 + 1;
- 26 488 544 ÷ 2 = 13 244 272 + 0;
- 13 244 272 ÷ 2 = 6 622 136 + 0;
- 6 622 136 ÷ 2 = 3 311 068 + 0;
- 3 311 068 ÷ 2 = 1 655 534 + 0;
- 1 655 534 ÷ 2 = 827 767 + 0;
- 827 767 ÷ 2 = 413 883 + 1;
- 413 883 ÷ 2 = 206 941 + 1;
- 206 941 ÷ 2 = 103 470 + 1;
- 103 470 ÷ 2 = 51 735 + 0;
- 51 735 ÷ 2 = 25 867 + 1;
- 25 867 ÷ 2 = 12 933 + 1;
- 12 933 ÷ 2 = 6 466 + 1;
- 6 466 ÷ 2 = 3 233 + 0;
- 3 233 ÷ 2 = 1 616 + 1;
- 1 616 ÷ 2 = 808 + 0;
- 808 ÷ 2 = 404 + 0;
- 404 ÷ 2 = 202 + 0;
- 202 ÷ 2 = 101 + 0;
- 101 ÷ 2 = 50 + 1;
- 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 101 010 011 385(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
111 101 010 011 385 (base 10) = 110 0101 0000 1011 1011 1000 0011 1100 0110 0100 1111 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.