What are the required steps to convert base 10 decimal system
number 1 399 756 390 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 399 756 390 ÷ 2 = 699 878 195 + 0;
- 699 878 195 ÷ 2 = 349 939 097 + 1;
- 349 939 097 ÷ 2 = 174 969 548 + 1;
- 174 969 548 ÷ 2 = 87 484 774 + 0;
- 87 484 774 ÷ 2 = 43 742 387 + 0;
- 43 742 387 ÷ 2 = 21 871 193 + 1;
- 21 871 193 ÷ 2 = 10 935 596 + 1;
- 10 935 596 ÷ 2 = 5 467 798 + 0;
- 5 467 798 ÷ 2 = 2 733 899 + 0;
- 2 733 899 ÷ 2 = 1 366 949 + 1;
- 1 366 949 ÷ 2 = 683 474 + 1;
- 683 474 ÷ 2 = 341 737 + 0;
- 341 737 ÷ 2 = 170 868 + 1;
- 170 868 ÷ 2 = 85 434 + 0;
- 85 434 ÷ 2 = 42 717 + 0;
- 42 717 ÷ 2 = 21 358 + 1;
- 21 358 ÷ 2 = 10 679 + 0;
- 10 679 ÷ 2 = 5 339 + 1;
- 5 339 ÷ 2 = 2 669 + 1;
- 2 669 ÷ 2 = 1 334 + 1;
- 1 334 ÷ 2 = 667 + 0;
- 667 ÷ 2 = 333 + 1;
- 333 ÷ 2 = 166 + 1;
- 166 ÷ 2 = 83 + 0;
- 83 ÷ 2 = 41 + 1;
- 41 ÷ 2 = 20 + 1;
- 20 ÷ 2 = 10 + 0;
- 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.
1 399 756 390(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 399 756 390 (base 10) = 101 0011 0110 1110 1001 0110 0110 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.