What are the required steps to convert base 10 decimal system
number 1 101 001 010 111 084 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 101 001 010 111 084 ÷ 2 = 550 500 505 055 542 + 0;
- 550 500 505 055 542 ÷ 2 = 275 250 252 527 771 + 0;
- 275 250 252 527 771 ÷ 2 = 137 625 126 263 885 + 1;
- 137 625 126 263 885 ÷ 2 = 68 812 563 131 942 + 1;
- 68 812 563 131 942 ÷ 2 = 34 406 281 565 971 + 0;
- 34 406 281 565 971 ÷ 2 = 17 203 140 782 985 + 1;
- 17 203 140 782 985 ÷ 2 = 8 601 570 391 492 + 1;
- 8 601 570 391 492 ÷ 2 = 4 300 785 195 746 + 0;
- 4 300 785 195 746 ÷ 2 = 2 150 392 597 873 + 0;
- 2 150 392 597 873 ÷ 2 = 1 075 196 298 936 + 1;
- 1 075 196 298 936 ÷ 2 = 537 598 149 468 + 0;
- 537 598 149 468 ÷ 2 = 268 799 074 734 + 0;
- 268 799 074 734 ÷ 2 = 134 399 537 367 + 0;
- 134 399 537 367 ÷ 2 = 67 199 768 683 + 1;
- 67 199 768 683 ÷ 2 = 33 599 884 341 + 1;
- 33 599 884 341 ÷ 2 = 16 799 942 170 + 1;
- 16 799 942 170 ÷ 2 = 8 399 971 085 + 0;
- 8 399 971 085 ÷ 2 = 4 199 985 542 + 1;
- 4 199 985 542 ÷ 2 = 2 099 992 771 + 0;
- 2 099 992 771 ÷ 2 = 1 049 996 385 + 1;
- 1 049 996 385 ÷ 2 = 524 998 192 + 1;
- 524 998 192 ÷ 2 = 262 499 096 + 0;
- 262 499 096 ÷ 2 = 131 249 548 + 0;
- 131 249 548 ÷ 2 = 65 624 774 + 0;
- 65 624 774 ÷ 2 = 32 812 387 + 0;
- 32 812 387 ÷ 2 = 16 406 193 + 1;
- 16 406 193 ÷ 2 = 8 203 096 + 1;
- 8 203 096 ÷ 2 = 4 101 548 + 0;
- 4 101 548 ÷ 2 = 2 050 774 + 0;
- 2 050 774 ÷ 2 = 1 025 387 + 0;
- 1 025 387 ÷ 2 = 512 693 + 1;
- 512 693 ÷ 2 = 256 346 + 1;
- 256 346 ÷ 2 = 128 173 + 0;
- 128 173 ÷ 2 = 64 086 + 1;
- 64 086 ÷ 2 = 32 043 + 0;
- 32 043 ÷ 2 = 16 021 + 1;
- 16 021 ÷ 2 = 8 010 + 1;
- 8 010 ÷ 2 = 4 005 + 0;
- 4 005 ÷ 2 = 2 002 + 1;
- 2 002 ÷ 2 = 1 001 + 0;
- 1 001 ÷ 2 = 500 + 1;
- 500 ÷ 2 = 250 + 0;
- 250 ÷ 2 = 125 + 0;
- 125 ÷ 2 = 62 + 1;
- 62 ÷ 2 = 31 + 0;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 7 ÷ 2 = 3 + 1;
- 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.
1 101 001 010 111 084(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 101 001 010 111 084 (base 10) = 11 1110 1001 0101 1010 1100 0110 0001 1010 1110 0010 0110 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.