What are the required steps to convert base 10 decimal system
number 23 970 523 478 952 888 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;
- 23 970 523 478 952 888 ÷ 2 = 11 985 261 739 476 444 + 0;
- 11 985 261 739 476 444 ÷ 2 = 5 992 630 869 738 222 + 0;
- 5 992 630 869 738 222 ÷ 2 = 2 996 315 434 869 111 + 0;
- 2 996 315 434 869 111 ÷ 2 = 1 498 157 717 434 555 + 1;
- 1 498 157 717 434 555 ÷ 2 = 749 078 858 717 277 + 1;
- 749 078 858 717 277 ÷ 2 = 374 539 429 358 638 + 1;
- 374 539 429 358 638 ÷ 2 = 187 269 714 679 319 + 0;
- 187 269 714 679 319 ÷ 2 = 93 634 857 339 659 + 1;
- 93 634 857 339 659 ÷ 2 = 46 817 428 669 829 + 1;
- 46 817 428 669 829 ÷ 2 = 23 408 714 334 914 + 1;
- 23 408 714 334 914 ÷ 2 = 11 704 357 167 457 + 0;
- 11 704 357 167 457 ÷ 2 = 5 852 178 583 728 + 1;
- 5 852 178 583 728 ÷ 2 = 2 926 089 291 864 + 0;
- 2 926 089 291 864 ÷ 2 = 1 463 044 645 932 + 0;
- 1 463 044 645 932 ÷ 2 = 731 522 322 966 + 0;
- 731 522 322 966 ÷ 2 = 365 761 161 483 + 0;
- 365 761 161 483 ÷ 2 = 182 880 580 741 + 1;
- 182 880 580 741 ÷ 2 = 91 440 290 370 + 1;
- 91 440 290 370 ÷ 2 = 45 720 145 185 + 0;
- 45 720 145 185 ÷ 2 = 22 860 072 592 + 1;
- 22 860 072 592 ÷ 2 = 11 430 036 296 + 0;
- 11 430 036 296 ÷ 2 = 5 715 018 148 + 0;
- 5 715 018 148 ÷ 2 = 2 857 509 074 + 0;
- 2 857 509 074 ÷ 2 = 1 428 754 537 + 0;
- 1 428 754 537 ÷ 2 = 714 377 268 + 1;
- 714 377 268 ÷ 2 = 357 188 634 + 0;
- 357 188 634 ÷ 2 = 178 594 317 + 0;
- 178 594 317 ÷ 2 = 89 297 158 + 1;
- 89 297 158 ÷ 2 = 44 648 579 + 0;
- 44 648 579 ÷ 2 = 22 324 289 + 1;
- 22 324 289 ÷ 2 = 11 162 144 + 1;
- 11 162 144 ÷ 2 = 5 581 072 + 0;
- 5 581 072 ÷ 2 = 2 790 536 + 0;
- 2 790 536 ÷ 2 = 1 395 268 + 0;
- 1 395 268 ÷ 2 = 697 634 + 0;
- 697 634 ÷ 2 = 348 817 + 0;
- 348 817 ÷ 2 = 174 408 + 1;
- 174 408 ÷ 2 = 87 204 + 0;
- 87 204 ÷ 2 = 43 602 + 0;
- 43 602 ÷ 2 = 21 801 + 0;
- 21 801 ÷ 2 = 10 900 + 1;
- 10 900 ÷ 2 = 5 450 + 0;
- 5 450 ÷ 2 = 2 725 + 0;
- 2 725 ÷ 2 = 1 362 + 1;
- 1 362 ÷ 2 = 681 + 0;
- 681 ÷ 2 = 340 + 1;
- 340 ÷ 2 = 170 + 0;
- 170 ÷ 2 = 85 + 0;
- 85 ÷ 2 = 42 + 1;
- 42 ÷ 2 = 21 + 0;
- 21 ÷ 2 = 10 + 1;
- 10 ÷ 2 = 5 + 0;
- 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.
23 970 523 478 952 888(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
23 970 523 478 952 888 (base 10) = 101 0101 0010 1001 0001 0000 0110 1001 0000 1011 0000 1011 1011 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.