What are the required steps to convert base 10 decimal system
number 206 726 679 446 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;
- 206 726 679 446 ÷ 2 = 103 363 339 723 + 0;
- 103 363 339 723 ÷ 2 = 51 681 669 861 + 1;
- 51 681 669 861 ÷ 2 = 25 840 834 930 + 1;
- 25 840 834 930 ÷ 2 = 12 920 417 465 + 0;
- 12 920 417 465 ÷ 2 = 6 460 208 732 + 1;
- 6 460 208 732 ÷ 2 = 3 230 104 366 + 0;
- 3 230 104 366 ÷ 2 = 1 615 052 183 + 0;
- 1 615 052 183 ÷ 2 = 807 526 091 + 1;
- 807 526 091 ÷ 2 = 403 763 045 + 1;
- 403 763 045 ÷ 2 = 201 881 522 + 1;
- 201 881 522 ÷ 2 = 100 940 761 + 0;
- 100 940 761 ÷ 2 = 50 470 380 + 1;
- 50 470 380 ÷ 2 = 25 235 190 + 0;
- 25 235 190 ÷ 2 = 12 617 595 + 0;
- 12 617 595 ÷ 2 = 6 308 797 + 1;
- 6 308 797 ÷ 2 = 3 154 398 + 1;
- 3 154 398 ÷ 2 = 1 577 199 + 0;
- 1 577 199 ÷ 2 = 788 599 + 1;
- 788 599 ÷ 2 = 394 299 + 1;
- 394 299 ÷ 2 = 197 149 + 1;
- 197 149 ÷ 2 = 98 574 + 1;
- 98 574 ÷ 2 = 49 287 + 0;
- 49 287 ÷ 2 = 24 643 + 1;
- 24 643 ÷ 2 = 12 321 + 1;
- 12 321 ÷ 2 = 6 160 + 1;
- 6 160 ÷ 2 = 3 080 + 0;
- 3 080 ÷ 2 = 1 540 + 0;
- 1 540 ÷ 2 = 770 + 0;
- 770 ÷ 2 = 385 + 0;
- 385 ÷ 2 = 192 + 1;
- 192 ÷ 2 = 96 + 0;
- 96 ÷ 2 = 48 + 0;
- 48 ÷ 2 = 24 + 0;
- 24 ÷ 2 = 12 + 0;
- 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.
206 726 679 446(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
206 726 679 446 (base 10) = 11 0000 0010 0001 1101 1110 1100 1011 1001 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.