What are the required steps to convert base 10 decimal system
number 4 090 069 568 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;
- 4 090 069 568 ÷ 2 = 2 045 034 784 + 0;
- 2 045 034 784 ÷ 2 = 1 022 517 392 + 0;
- 1 022 517 392 ÷ 2 = 511 258 696 + 0;
- 511 258 696 ÷ 2 = 255 629 348 + 0;
- 255 629 348 ÷ 2 = 127 814 674 + 0;
- 127 814 674 ÷ 2 = 63 907 337 + 0;
- 63 907 337 ÷ 2 = 31 953 668 + 1;
- 31 953 668 ÷ 2 = 15 976 834 + 0;
- 15 976 834 ÷ 2 = 7 988 417 + 0;
- 7 988 417 ÷ 2 = 3 994 208 + 1;
- 3 994 208 ÷ 2 = 1 997 104 + 0;
- 1 997 104 ÷ 2 = 998 552 + 0;
- 998 552 ÷ 2 = 499 276 + 0;
- 499 276 ÷ 2 = 249 638 + 0;
- 249 638 ÷ 2 = 124 819 + 0;
- 124 819 ÷ 2 = 62 409 + 1;
- 62 409 ÷ 2 = 31 204 + 1;
- 31 204 ÷ 2 = 15 602 + 0;
- 15 602 ÷ 2 = 7 801 + 0;
- 7 801 ÷ 2 = 3 900 + 1;
- 3 900 ÷ 2 = 1 950 + 0;
- 1 950 ÷ 2 = 975 + 0;
- 975 ÷ 2 = 487 + 1;
- 487 ÷ 2 = 243 + 1;
- 243 ÷ 2 = 121 + 1;
- 121 ÷ 2 = 60 + 1;
- 60 ÷ 2 = 30 + 0;
- 30 ÷ 2 = 15 + 0;
- 15 ÷ 2 = 7 + 1;
- 7 ÷ 2 = 3 + 1;
- 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.
4 090 069 568(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
4 090 069 568 (base 10) = 1111 0011 1100 1001 1000 0010 0100 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.