What are the required steps to convert base 10 decimal system
number 314 763 744 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;
- 314 763 744 ÷ 2 = 157 381 872 + 0;
- 157 381 872 ÷ 2 = 78 690 936 + 0;
- 78 690 936 ÷ 2 = 39 345 468 + 0;
- 39 345 468 ÷ 2 = 19 672 734 + 0;
- 19 672 734 ÷ 2 = 9 836 367 + 0;
- 9 836 367 ÷ 2 = 4 918 183 + 1;
- 4 918 183 ÷ 2 = 2 459 091 + 1;
- 2 459 091 ÷ 2 = 1 229 545 + 1;
- 1 229 545 ÷ 2 = 614 772 + 1;
- 614 772 ÷ 2 = 307 386 + 0;
- 307 386 ÷ 2 = 153 693 + 0;
- 153 693 ÷ 2 = 76 846 + 1;
- 76 846 ÷ 2 = 38 423 + 0;
- 38 423 ÷ 2 = 19 211 + 1;
- 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.
314 763 744(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
314 763 744 (base 10) = 1 0010 1100 0010 1110 1001 1110 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.