What are the required steps to convert base 10 decimal system
number 12 978 128 379 128 202 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;
- 12 978 128 379 128 202 ÷ 2 = 6 489 064 189 564 101 + 0;
- 6 489 064 189 564 101 ÷ 2 = 3 244 532 094 782 050 + 1;
- 3 244 532 094 782 050 ÷ 2 = 1 622 266 047 391 025 + 0;
- 1 622 266 047 391 025 ÷ 2 = 811 133 023 695 512 + 1;
- 811 133 023 695 512 ÷ 2 = 405 566 511 847 756 + 0;
- 405 566 511 847 756 ÷ 2 = 202 783 255 923 878 + 0;
- 202 783 255 923 878 ÷ 2 = 101 391 627 961 939 + 0;
- 101 391 627 961 939 ÷ 2 = 50 695 813 980 969 + 1;
- 50 695 813 980 969 ÷ 2 = 25 347 906 990 484 + 1;
- 25 347 906 990 484 ÷ 2 = 12 673 953 495 242 + 0;
- 12 673 953 495 242 ÷ 2 = 6 336 976 747 621 + 0;
- 6 336 976 747 621 ÷ 2 = 3 168 488 373 810 + 1;
- 3 168 488 373 810 ÷ 2 = 1 584 244 186 905 + 0;
- 1 584 244 186 905 ÷ 2 = 792 122 093 452 + 1;
- 792 122 093 452 ÷ 2 = 396 061 046 726 + 0;
- 396 061 046 726 ÷ 2 = 198 030 523 363 + 0;
- 198 030 523 363 ÷ 2 = 99 015 261 681 + 1;
- 99 015 261 681 ÷ 2 = 49 507 630 840 + 1;
- 49 507 630 840 ÷ 2 = 24 753 815 420 + 0;
- 24 753 815 420 ÷ 2 = 12 376 907 710 + 0;
- 12 376 907 710 ÷ 2 = 6 188 453 855 + 0;
- 6 188 453 855 ÷ 2 = 3 094 226 927 + 1;
- 3 094 226 927 ÷ 2 = 1 547 113 463 + 1;
- 1 547 113 463 ÷ 2 = 773 556 731 + 1;
- 773 556 731 ÷ 2 = 386 778 365 + 1;
- 386 778 365 ÷ 2 = 193 389 182 + 1;
- 193 389 182 ÷ 2 = 96 694 591 + 0;
- 96 694 591 ÷ 2 = 48 347 295 + 1;
- 48 347 295 ÷ 2 = 24 173 647 + 1;
- 24 173 647 ÷ 2 = 12 086 823 + 1;
- 12 086 823 ÷ 2 = 6 043 411 + 1;
- 6 043 411 ÷ 2 = 3 021 705 + 1;
- 3 021 705 ÷ 2 = 1 510 852 + 1;
- 1 510 852 ÷ 2 = 755 426 + 0;
- 755 426 ÷ 2 = 377 713 + 0;
- 377 713 ÷ 2 = 188 856 + 1;
- 188 856 ÷ 2 = 94 428 + 0;
- 94 428 ÷ 2 = 47 214 + 0;
- 47 214 ÷ 2 = 23 607 + 0;
- 23 607 ÷ 2 = 11 803 + 1;
- 11 803 ÷ 2 = 5 901 + 1;
- 5 901 ÷ 2 = 2 950 + 1;
- 2 950 ÷ 2 = 1 475 + 0;
- 1 475 ÷ 2 = 737 + 1;
- 737 ÷ 2 = 368 + 1;
- 368 ÷ 2 = 184 + 0;
- 184 ÷ 2 = 92 + 0;
- 92 ÷ 2 = 46 + 0;
- 46 ÷ 2 = 23 + 0;
- 23 ÷ 2 = 11 + 1;
- 11 ÷ 2 = 5 + 1;
- 5 ÷ 2 = 2 + 1;
- 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.
12 978 128 379 128 202(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
12 978 128 379 128 202 (base 10) = 10 1110 0001 1011 1000 1001 1111 1011 1110 0011 0010 1001 1000 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.