What are the required steps to convert base 10 decimal system
number 2 401 525 500 304 109 083 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;
- 2 401 525 500 304 109 083 ÷ 2 = 1 200 762 750 152 054 541 + 1;
- 1 200 762 750 152 054 541 ÷ 2 = 600 381 375 076 027 270 + 1;
- 600 381 375 076 027 270 ÷ 2 = 300 190 687 538 013 635 + 0;
- 300 190 687 538 013 635 ÷ 2 = 150 095 343 769 006 817 + 1;
- 150 095 343 769 006 817 ÷ 2 = 75 047 671 884 503 408 + 1;
- 75 047 671 884 503 408 ÷ 2 = 37 523 835 942 251 704 + 0;
- 37 523 835 942 251 704 ÷ 2 = 18 761 917 971 125 852 + 0;
- 18 761 917 971 125 852 ÷ 2 = 9 380 958 985 562 926 + 0;
- 9 380 958 985 562 926 ÷ 2 = 4 690 479 492 781 463 + 0;
- 4 690 479 492 781 463 ÷ 2 = 2 345 239 746 390 731 + 1;
- 2 345 239 746 390 731 ÷ 2 = 1 172 619 873 195 365 + 1;
- 1 172 619 873 195 365 ÷ 2 = 586 309 936 597 682 + 1;
- 586 309 936 597 682 ÷ 2 = 293 154 968 298 841 + 0;
- 293 154 968 298 841 ÷ 2 = 146 577 484 149 420 + 1;
- 146 577 484 149 420 ÷ 2 = 73 288 742 074 710 + 0;
- 73 288 742 074 710 ÷ 2 = 36 644 371 037 355 + 0;
- 36 644 371 037 355 ÷ 2 = 18 322 185 518 677 + 1;
- 18 322 185 518 677 ÷ 2 = 9 161 092 759 338 + 1;
- 9 161 092 759 338 ÷ 2 = 4 580 546 379 669 + 0;
- 4 580 546 379 669 ÷ 2 = 2 290 273 189 834 + 1;
- 2 290 273 189 834 ÷ 2 = 1 145 136 594 917 + 0;
- 1 145 136 594 917 ÷ 2 = 572 568 297 458 + 1;
- 572 568 297 458 ÷ 2 = 286 284 148 729 + 0;
- 286 284 148 729 ÷ 2 = 143 142 074 364 + 1;
- 143 142 074 364 ÷ 2 = 71 571 037 182 + 0;
- 71 571 037 182 ÷ 2 = 35 785 518 591 + 0;
- 35 785 518 591 ÷ 2 = 17 892 759 295 + 1;
- 17 892 759 295 ÷ 2 = 8 946 379 647 + 1;
- 8 946 379 647 ÷ 2 = 4 473 189 823 + 1;
- 4 473 189 823 ÷ 2 = 2 236 594 911 + 1;
- 2 236 594 911 ÷ 2 = 1 118 297 455 + 1;
- 1 118 297 455 ÷ 2 = 559 148 727 + 1;
- 559 148 727 ÷ 2 = 279 574 363 + 1;
- 279 574 363 ÷ 2 = 139 787 181 + 1;
- 139 787 181 ÷ 2 = 69 893 590 + 1;
- 69 893 590 ÷ 2 = 34 946 795 + 0;
- 34 946 795 ÷ 2 = 17 473 397 + 1;
- 17 473 397 ÷ 2 = 8 736 698 + 1;
- 8 736 698 ÷ 2 = 4 368 349 + 0;
- 4 368 349 ÷ 2 = 2 184 174 + 1;
- 2 184 174 ÷ 2 = 1 092 087 + 0;
- 1 092 087 ÷ 2 = 546 043 + 1;
- 546 043 ÷ 2 = 273 021 + 1;
- 273 021 ÷ 2 = 136 510 + 1;
- 136 510 ÷ 2 = 68 255 + 0;
- 68 255 ÷ 2 = 34 127 + 1;
- 34 127 ÷ 2 = 17 063 + 1;
- 17 063 ÷ 2 = 8 531 + 1;
- 8 531 ÷ 2 = 4 265 + 1;
- 4 265 ÷ 2 = 2 132 + 1;
- 2 132 ÷ 2 = 1 066 + 0;
- 1 066 ÷ 2 = 533 + 0;
- 533 ÷ 2 = 266 + 1;
- 266 ÷ 2 = 133 + 0;
- 133 ÷ 2 = 66 + 1;
- 66 ÷ 2 = 33 + 0;
- 33 ÷ 2 = 16 + 1;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
2 401 525 500 304 109 083(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 401 525 500 304 109 083 (base 10) = 10 0001 0101 0011 1110 1110 1011 0111 1111 1100 1010 1011 0010 1110 0001 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.