What are the required steps to convert base 10 decimal system
number 1 111 011 110 001 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;
- 1 111 011 110 001 ÷ 2 = 555 505 555 000 + 1;
- 555 505 555 000 ÷ 2 = 277 752 777 500 + 0;
- 277 752 777 500 ÷ 2 = 138 876 388 750 + 0;
- 138 876 388 750 ÷ 2 = 69 438 194 375 + 0;
- 69 438 194 375 ÷ 2 = 34 719 097 187 + 1;
- 34 719 097 187 ÷ 2 = 17 359 548 593 + 1;
- 17 359 548 593 ÷ 2 = 8 679 774 296 + 1;
- 8 679 774 296 ÷ 2 = 4 339 887 148 + 0;
- 4 339 887 148 ÷ 2 = 2 169 943 574 + 0;
- 2 169 943 574 ÷ 2 = 1 084 971 787 + 0;
- 1 084 971 787 ÷ 2 = 542 485 893 + 1;
- 542 485 893 ÷ 2 = 271 242 946 + 1;
- 271 242 946 ÷ 2 = 135 621 473 + 0;
- 135 621 473 ÷ 2 = 67 810 736 + 1;
- 67 810 736 ÷ 2 = 33 905 368 + 0;
- 33 905 368 ÷ 2 = 16 952 684 + 0;
- 16 952 684 ÷ 2 = 8 476 342 + 0;
- 8 476 342 ÷ 2 = 4 238 171 + 0;
- 4 238 171 ÷ 2 = 2 119 085 + 1;
- 2 119 085 ÷ 2 = 1 059 542 + 1;
- 1 059 542 ÷ 2 = 529 771 + 0;
- 529 771 ÷ 2 = 264 885 + 1;
- 264 885 ÷ 2 = 132 442 + 1;
- 132 442 ÷ 2 = 66 221 + 0;
- 66 221 ÷ 2 = 33 110 + 1;
- 33 110 ÷ 2 = 16 555 + 0;
- 16 555 ÷ 2 = 8 277 + 1;
- 8 277 ÷ 2 = 4 138 + 1;
- 4 138 ÷ 2 = 2 069 + 0;
- 2 069 ÷ 2 = 1 034 + 1;
- 1 034 ÷ 2 = 517 + 0;
- 517 ÷ 2 = 258 + 1;
- 258 ÷ 2 = 129 + 0;
- 129 ÷ 2 = 64 + 1;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
1 111 011 110 001(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 111 011 110 001 (base 10) = 1 0000 0010 1010 1101 0110 1100 0010 1100 0111 0001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.