What are the required steps to convert base 10 decimal system
number 1 351 871 325 328 132 501 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;
- 1 351 871 325 328 132 501 ÷ 2 = 675 935 662 664 066 250 + 1;
- 675 935 662 664 066 250 ÷ 2 = 337 967 831 332 033 125 + 0;
- 337 967 831 332 033 125 ÷ 2 = 168 983 915 666 016 562 + 1;
- 168 983 915 666 016 562 ÷ 2 = 84 491 957 833 008 281 + 0;
- 84 491 957 833 008 281 ÷ 2 = 42 245 978 916 504 140 + 1;
- 42 245 978 916 504 140 ÷ 2 = 21 122 989 458 252 070 + 0;
- 21 122 989 458 252 070 ÷ 2 = 10 561 494 729 126 035 + 0;
- 10 561 494 729 126 035 ÷ 2 = 5 280 747 364 563 017 + 1;
- 5 280 747 364 563 017 ÷ 2 = 2 640 373 682 281 508 + 1;
- 2 640 373 682 281 508 ÷ 2 = 1 320 186 841 140 754 + 0;
- 1 320 186 841 140 754 ÷ 2 = 660 093 420 570 377 + 0;
- 660 093 420 570 377 ÷ 2 = 330 046 710 285 188 + 1;
- 330 046 710 285 188 ÷ 2 = 165 023 355 142 594 + 0;
- 165 023 355 142 594 ÷ 2 = 82 511 677 571 297 + 0;
- 82 511 677 571 297 ÷ 2 = 41 255 838 785 648 + 1;
- 41 255 838 785 648 ÷ 2 = 20 627 919 392 824 + 0;
- 20 627 919 392 824 ÷ 2 = 10 313 959 696 412 + 0;
- 10 313 959 696 412 ÷ 2 = 5 156 979 848 206 + 0;
- 5 156 979 848 206 ÷ 2 = 2 578 489 924 103 + 0;
- 2 578 489 924 103 ÷ 2 = 1 289 244 962 051 + 1;
- 1 289 244 962 051 ÷ 2 = 644 622 481 025 + 1;
- 644 622 481 025 ÷ 2 = 322 311 240 512 + 1;
- 322 311 240 512 ÷ 2 = 161 155 620 256 + 0;
- 161 155 620 256 ÷ 2 = 80 577 810 128 + 0;
- 80 577 810 128 ÷ 2 = 40 288 905 064 + 0;
- 40 288 905 064 ÷ 2 = 20 144 452 532 + 0;
- 20 144 452 532 ÷ 2 = 10 072 226 266 + 0;
- 10 072 226 266 ÷ 2 = 5 036 113 133 + 0;
- 5 036 113 133 ÷ 2 = 2 518 056 566 + 1;
- 2 518 056 566 ÷ 2 = 1 259 028 283 + 0;
- 1 259 028 283 ÷ 2 = 629 514 141 + 1;
- 629 514 141 ÷ 2 = 314 757 070 + 1;
- 314 757 070 ÷ 2 = 157 378 535 + 0;
- 157 378 535 ÷ 2 = 78 689 267 + 1;
- 78 689 267 ÷ 2 = 39 344 633 + 1;
- 39 344 633 ÷ 2 = 19 672 316 + 1;
- 19 672 316 ÷ 2 = 9 836 158 + 0;
- 9 836 158 ÷ 2 = 4 918 079 + 0;
- 4 918 079 ÷ 2 = 2 459 039 + 1;
- 2 459 039 ÷ 2 = 1 229 519 + 1;
- 1 229 519 ÷ 2 = 614 759 + 1;
- 614 759 ÷ 2 = 307 379 + 1;
- 307 379 ÷ 2 = 153 689 + 1;
- 153 689 ÷ 2 = 76 844 + 1;
- 76 844 ÷ 2 = 38 422 + 0;
- 38 422 ÷ 2 = 19 211 + 0;
- 19 211 ÷ 2 = 9 605 + 1;
- 9 605 ÷ 2 = 4 802 + 1;
- 4 802 ÷ 2 = 2 401 + 0;
- 2 401 ÷ 2 = 1 200 + 1;
- 1 200 ÷ 2 = 600 + 0;
- 600 ÷ 2 = 300 + 0;
- 300 ÷ 2 = 150 + 0;
- 150 ÷ 2 = 75 + 0;
- 75 ÷ 2 = 37 + 1;
- 37 ÷ 2 = 18 + 1;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 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.
1 351 871 325 328 132 501(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 351 871 325 328 132 501 (base 10) = 1 0010 1100 0010 1100 1111 1100 1110 1101 0000 0011 1000 0100 1001 1001 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.