What are the required steps to convert base 10 decimal system
number 515 837 293 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;
- 515 837 293 ÷ 2 = 257 918 646 + 1;
- 257 918 646 ÷ 2 = 128 959 323 + 0;
- 128 959 323 ÷ 2 = 64 479 661 + 1;
- 64 479 661 ÷ 2 = 32 239 830 + 1;
- 32 239 830 ÷ 2 = 16 119 915 + 0;
- 16 119 915 ÷ 2 = 8 059 957 + 1;
- 8 059 957 ÷ 2 = 4 029 978 + 1;
- 4 029 978 ÷ 2 = 2 014 989 + 0;
- 2 014 989 ÷ 2 = 1 007 494 + 1;
- 1 007 494 ÷ 2 = 503 747 + 0;
- 503 747 ÷ 2 = 251 873 + 1;
- 251 873 ÷ 2 = 125 936 + 1;
- 125 936 ÷ 2 = 62 968 + 0;
- 62 968 ÷ 2 = 31 484 + 0;
- 31 484 ÷ 2 = 15 742 + 0;
- 15 742 ÷ 2 = 7 871 + 0;
- 7 871 ÷ 2 = 3 935 + 1;
- 3 935 ÷ 2 = 1 967 + 1;
- 1 967 ÷ 2 = 983 + 1;
- 983 ÷ 2 = 491 + 1;
- 491 ÷ 2 = 245 + 1;
- 245 ÷ 2 = 122 + 1;
- 122 ÷ 2 = 61 + 0;
- 61 ÷ 2 = 30 + 1;
- 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.
515 837 293(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
515 837 293 (base 10) = 1 1110 1011 1111 0000 1101 0110 1101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.