What are the required steps to convert base 10 decimal system
number 7 123 513 423 487 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;
- 7 123 513 423 487 ÷ 2 = 3 561 756 711 743 + 1;
- 3 561 756 711 743 ÷ 2 = 1 780 878 355 871 + 1;
- 1 780 878 355 871 ÷ 2 = 890 439 177 935 + 1;
- 890 439 177 935 ÷ 2 = 445 219 588 967 + 1;
- 445 219 588 967 ÷ 2 = 222 609 794 483 + 1;
- 222 609 794 483 ÷ 2 = 111 304 897 241 + 1;
- 111 304 897 241 ÷ 2 = 55 652 448 620 + 1;
- 55 652 448 620 ÷ 2 = 27 826 224 310 + 0;
- 27 826 224 310 ÷ 2 = 13 913 112 155 + 0;
- 13 913 112 155 ÷ 2 = 6 956 556 077 + 1;
- 6 956 556 077 ÷ 2 = 3 478 278 038 + 1;
- 3 478 278 038 ÷ 2 = 1 739 139 019 + 0;
- 1 739 139 019 ÷ 2 = 869 569 509 + 1;
- 869 569 509 ÷ 2 = 434 784 754 + 1;
- 434 784 754 ÷ 2 = 217 392 377 + 0;
- 217 392 377 ÷ 2 = 108 696 188 + 1;
- 108 696 188 ÷ 2 = 54 348 094 + 0;
- 54 348 094 ÷ 2 = 27 174 047 + 0;
- 27 174 047 ÷ 2 = 13 587 023 + 1;
- 13 587 023 ÷ 2 = 6 793 511 + 1;
- 6 793 511 ÷ 2 = 3 396 755 + 1;
- 3 396 755 ÷ 2 = 1 698 377 + 1;
- 1 698 377 ÷ 2 = 849 188 + 1;
- 849 188 ÷ 2 = 424 594 + 0;
- 424 594 ÷ 2 = 212 297 + 0;
- 212 297 ÷ 2 = 106 148 + 1;
- 106 148 ÷ 2 = 53 074 + 0;
- 53 074 ÷ 2 = 26 537 + 0;
- 26 537 ÷ 2 = 13 268 + 1;
- 13 268 ÷ 2 = 6 634 + 0;
- 6 634 ÷ 2 = 3 317 + 0;
- 3 317 ÷ 2 = 1 658 + 1;
- 1 658 ÷ 2 = 829 + 0;
- 829 ÷ 2 = 414 + 1;
- 414 ÷ 2 = 207 + 0;
- 207 ÷ 2 = 103 + 1;
- 103 ÷ 2 = 51 + 1;
- 51 ÷ 2 = 25 + 1;
- 25 ÷ 2 = 12 + 1;
- 12 ÷ 2 = 6 + 0;
- 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.
7 123 513 423 487(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
7 123 513 423 487 (base 10) = 110 0111 1010 1001 0010 0111 1100 1011 0110 0111 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.