What are the required steps to convert base 10 decimal system
number 3 979 693 538 009 940 028 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;
- 3 979 693 538 009 940 028 ÷ 2 = 1 989 846 769 004 970 014 + 0;
- 1 989 846 769 004 970 014 ÷ 2 = 994 923 384 502 485 007 + 0;
- 994 923 384 502 485 007 ÷ 2 = 497 461 692 251 242 503 + 1;
- 497 461 692 251 242 503 ÷ 2 = 248 730 846 125 621 251 + 1;
- 248 730 846 125 621 251 ÷ 2 = 124 365 423 062 810 625 + 1;
- 124 365 423 062 810 625 ÷ 2 = 62 182 711 531 405 312 + 1;
- 62 182 711 531 405 312 ÷ 2 = 31 091 355 765 702 656 + 0;
- 31 091 355 765 702 656 ÷ 2 = 15 545 677 882 851 328 + 0;
- 15 545 677 882 851 328 ÷ 2 = 7 772 838 941 425 664 + 0;
- 7 772 838 941 425 664 ÷ 2 = 3 886 419 470 712 832 + 0;
- 3 886 419 470 712 832 ÷ 2 = 1 943 209 735 356 416 + 0;
- 1 943 209 735 356 416 ÷ 2 = 971 604 867 678 208 + 0;
- 971 604 867 678 208 ÷ 2 = 485 802 433 839 104 + 0;
- 485 802 433 839 104 ÷ 2 = 242 901 216 919 552 + 0;
- 242 901 216 919 552 ÷ 2 = 121 450 608 459 776 + 0;
- 121 450 608 459 776 ÷ 2 = 60 725 304 229 888 + 0;
- 60 725 304 229 888 ÷ 2 = 30 362 652 114 944 + 0;
- 30 362 652 114 944 ÷ 2 = 15 181 326 057 472 + 0;
- 15 181 326 057 472 ÷ 2 = 7 590 663 028 736 + 0;
- 7 590 663 028 736 ÷ 2 = 3 795 331 514 368 + 0;
- 3 795 331 514 368 ÷ 2 = 1 897 665 757 184 + 0;
- 1 897 665 757 184 ÷ 2 = 948 832 878 592 + 0;
- 948 832 878 592 ÷ 2 = 474 416 439 296 + 0;
- 474 416 439 296 ÷ 2 = 237 208 219 648 + 0;
- 237 208 219 648 ÷ 2 = 118 604 109 824 + 0;
- 118 604 109 824 ÷ 2 = 59 302 054 912 + 0;
- 59 302 054 912 ÷ 2 = 29 651 027 456 + 0;
- 29 651 027 456 ÷ 2 = 14 825 513 728 + 0;
- 14 825 513 728 ÷ 2 = 7 412 756 864 + 0;
- 7 412 756 864 ÷ 2 = 3 706 378 432 + 0;
- 3 706 378 432 ÷ 2 = 1 853 189 216 + 0;
- 1 853 189 216 ÷ 2 = 926 594 608 + 0;
- 926 594 608 ÷ 2 = 463 297 304 + 0;
- 463 297 304 ÷ 2 = 231 648 652 + 0;
- 231 648 652 ÷ 2 = 115 824 326 + 0;
- 115 824 326 ÷ 2 = 57 912 163 + 0;
- 57 912 163 ÷ 2 = 28 956 081 + 1;
- 28 956 081 ÷ 2 = 14 478 040 + 1;
- 14 478 040 ÷ 2 = 7 239 020 + 0;
- 7 239 020 ÷ 2 = 3 619 510 + 0;
- 3 619 510 ÷ 2 = 1 809 755 + 0;
- 1 809 755 ÷ 2 = 904 877 + 1;
- 904 877 ÷ 2 = 452 438 + 1;
- 452 438 ÷ 2 = 226 219 + 0;
- 226 219 ÷ 2 = 113 109 + 1;
- 113 109 ÷ 2 = 56 554 + 1;
- 56 554 ÷ 2 = 28 277 + 0;
- 28 277 ÷ 2 = 14 138 + 1;
- 14 138 ÷ 2 = 7 069 + 0;
- 7 069 ÷ 2 = 3 534 + 1;
- 3 534 ÷ 2 = 1 767 + 0;
- 1 767 ÷ 2 = 883 + 1;
- 883 ÷ 2 = 441 + 1;
- 441 ÷ 2 = 220 + 1;
- 220 ÷ 2 = 110 + 0;
- 110 ÷ 2 = 55 + 0;
- 55 ÷ 2 = 27 + 1;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 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.
3 979 693 538 009 940 028(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 979 693 538 009 940 028 (base 10) = 11 0111 0011 1010 1011 0110 0011 0000 0000 0000 0000 0000 0000 0000 0011 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.