What are the required steps to convert base 10 decimal system
number 884 176 199 373 970 633 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;
- 884 176 199 373 970 633 ÷ 2 = 442 088 099 686 985 316 + 1;
- 442 088 099 686 985 316 ÷ 2 = 221 044 049 843 492 658 + 0;
- 221 044 049 843 492 658 ÷ 2 = 110 522 024 921 746 329 + 0;
- 110 522 024 921 746 329 ÷ 2 = 55 261 012 460 873 164 + 1;
- 55 261 012 460 873 164 ÷ 2 = 27 630 506 230 436 582 + 0;
- 27 630 506 230 436 582 ÷ 2 = 13 815 253 115 218 291 + 0;
- 13 815 253 115 218 291 ÷ 2 = 6 907 626 557 609 145 + 1;
- 6 907 626 557 609 145 ÷ 2 = 3 453 813 278 804 572 + 1;
- 3 453 813 278 804 572 ÷ 2 = 1 726 906 639 402 286 + 0;
- 1 726 906 639 402 286 ÷ 2 = 863 453 319 701 143 + 0;
- 863 453 319 701 143 ÷ 2 = 431 726 659 850 571 + 1;
- 431 726 659 850 571 ÷ 2 = 215 863 329 925 285 + 1;
- 215 863 329 925 285 ÷ 2 = 107 931 664 962 642 + 1;
- 107 931 664 962 642 ÷ 2 = 53 965 832 481 321 + 0;
- 53 965 832 481 321 ÷ 2 = 26 982 916 240 660 + 1;
- 26 982 916 240 660 ÷ 2 = 13 491 458 120 330 + 0;
- 13 491 458 120 330 ÷ 2 = 6 745 729 060 165 + 0;
- 6 745 729 060 165 ÷ 2 = 3 372 864 530 082 + 1;
- 3 372 864 530 082 ÷ 2 = 1 686 432 265 041 + 0;
- 1 686 432 265 041 ÷ 2 = 843 216 132 520 + 1;
- 843 216 132 520 ÷ 2 = 421 608 066 260 + 0;
- 421 608 066 260 ÷ 2 = 210 804 033 130 + 0;
- 210 804 033 130 ÷ 2 = 105 402 016 565 + 0;
- 105 402 016 565 ÷ 2 = 52 701 008 282 + 1;
- 52 701 008 282 ÷ 2 = 26 350 504 141 + 0;
- 26 350 504 141 ÷ 2 = 13 175 252 070 + 1;
- 13 175 252 070 ÷ 2 = 6 587 626 035 + 0;
- 6 587 626 035 ÷ 2 = 3 293 813 017 + 1;
- 3 293 813 017 ÷ 2 = 1 646 906 508 + 1;
- 1 646 906 508 ÷ 2 = 823 453 254 + 0;
- 823 453 254 ÷ 2 = 411 726 627 + 0;
- 411 726 627 ÷ 2 = 205 863 313 + 1;
- 205 863 313 ÷ 2 = 102 931 656 + 1;
- 102 931 656 ÷ 2 = 51 465 828 + 0;
- 51 465 828 ÷ 2 = 25 732 914 + 0;
- 25 732 914 ÷ 2 = 12 866 457 + 0;
- 12 866 457 ÷ 2 = 6 433 228 + 1;
- 6 433 228 ÷ 2 = 3 216 614 + 0;
- 3 216 614 ÷ 2 = 1 608 307 + 0;
- 1 608 307 ÷ 2 = 804 153 + 1;
- 804 153 ÷ 2 = 402 076 + 1;
- 402 076 ÷ 2 = 201 038 + 0;
- 201 038 ÷ 2 = 100 519 + 0;
- 100 519 ÷ 2 = 50 259 + 1;
- 50 259 ÷ 2 = 25 129 + 1;
- 25 129 ÷ 2 = 12 564 + 1;
- 12 564 ÷ 2 = 6 282 + 0;
- 6 282 ÷ 2 = 3 141 + 0;
- 3 141 ÷ 2 = 1 570 + 1;
- 1 570 ÷ 2 = 785 + 0;
- 785 ÷ 2 = 392 + 1;
- 392 ÷ 2 = 196 + 0;
- 196 ÷ 2 = 98 + 0;
- 98 ÷ 2 = 49 + 0;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 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.
884 176 199 373 970 633(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
884 176 199 373 970 633 (base 10) = 1100 0100 0101 0011 1001 1001 0001 1001 1010 1000 1010 0101 1100 1100 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.