What are the required steps to convert base 10 decimal system
number 123 455 371 709 539 729 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;
- 123 455 371 709 539 729 ÷ 2 = 61 727 685 854 769 864 + 1;
- 61 727 685 854 769 864 ÷ 2 = 30 863 842 927 384 932 + 0;
- 30 863 842 927 384 932 ÷ 2 = 15 431 921 463 692 466 + 0;
- 15 431 921 463 692 466 ÷ 2 = 7 715 960 731 846 233 + 0;
- 7 715 960 731 846 233 ÷ 2 = 3 857 980 365 923 116 + 1;
- 3 857 980 365 923 116 ÷ 2 = 1 928 990 182 961 558 + 0;
- 1 928 990 182 961 558 ÷ 2 = 964 495 091 480 779 + 0;
- 964 495 091 480 779 ÷ 2 = 482 247 545 740 389 + 1;
- 482 247 545 740 389 ÷ 2 = 241 123 772 870 194 + 1;
- 241 123 772 870 194 ÷ 2 = 120 561 886 435 097 + 0;
- 120 561 886 435 097 ÷ 2 = 60 280 943 217 548 + 1;
- 60 280 943 217 548 ÷ 2 = 30 140 471 608 774 + 0;
- 30 140 471 608 774 ÷ 2 = 15 070 235 804 387 + 0;
- 15 070 235 804 387 ÷ 2 = 7 535 117 902 193 + 1;
- 7 535 117 902 193 ÷ 2 = 3 767 558 951 096 + 1;
- 3 767 558 951 096 ÷ 2 = 1 883 779 475 548 + 0;
- 1 883 779 475 548 ÷ 2 = 941 889 737 774 + 0;
- 941 889 737 774 ÷ 2 = 470 944 868 887 + 0;
- 470 944 868 887 ÷ 2 = 235 472 434 443 + 1;
- 235 472 434 443 ÷ 2 = 117 736 217 221 + 1;
- 117 736 217 221 ÷ 2 = 58 868 108 610 + 1;
- 58 868 108 610 ÷ 2 = 29 434 054 305 + 0;
- 29 434 054 305 ÷ 2 = 14 717 027 152 + 1;
- 14 717 027 152 ÷ 2 = 7 358 513 576 + 0;
- 7 358 513 576 ÷ 2 = 3 679 256 788 + 0;
- 3 679 256 788 ÷ 2 = 1 839 628 394 + 0;
- 1 839 628 394 ÷ 2 = 919 814 197 + 0;
- 919 814 197 ÷ 2 = 459 907 098 + 1;
- 459 907 098 ÷ 2 = 229 953 549 + 0;
- 229 953 549 ÷ 2 = 114 976 774 + 1;
- 114 976 774 ÷ 2 = 57 488 387 + 0;
- 57 488 387 ÷ 2 = 28 744 193 + 1;
- 28 744 193 ÷ 2 = 14 372 096 + 1;
- 14 372 096 ÷ 2 = 7 186 048 + 0;
- 7 186 048 ÷ 2 = 3 593 024 + 0;
- 3 593 024 ÷ 2 = 1 796 512 + 0;
- 1 796 512 ÷ 2 = 898 256 + 0;
- 898 256 ÷ 2 = 449 128 + 0;
- 449 128 ÷ 2 = 224 564 + 0;
- 224 564 ÷ 2 = 112 282 + 0;
- 112 282 ÷ 2 = 56 141 + 0;
- 56 141 ÷ 2 = 28 070 + 1;
- 28 070 ÷ 2 = 14 035 + 0;
- 14 035 ÷ 2 = 7 017 + 1;
- 7 017 ÷ 2 = 3 508 + 1;
- 3 508 ÷ 2 = 1 754 + 0;
- 1 754 ÷ 2 = 877 + 0;
- 877 ÷ 2 = 438 + 1;
- 438 ÷ 2 = 219 + 0;
- 219 ÷ 2 = 109 + 1;
- 109 ÷ 2 = 54 + 1;
- 54 ÷ 2 = 27 + 0;
- 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.
123 455 371 709 539 729(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
123 455 371 709 539 729 (base 10) = 1 1011 0110 1001 1010 0000 0001 1010 1000 0101 1100 0110 0101 1001 0001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.