What are the required steps to convert base 10 decimal system
number 758 343 308 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;
- 758 343 308 ÷ 2 = 379 171 654 + 0;
- 379 171 654 ÷ 2 = 189 585 827 + 0;
- 189 585 827 ÷ 2 = 94 792 913 + 1;
- 94 792 913 ÷ 2 = 47 396 456 + 1;
- 47 396 456 ÷ 2 = 23 698 228 + 0;
- 23 698 228 ÷ 2 = 11 849 114 + 0;
- 11 849 114 ÷ 2 = 5 924 557 + 0;
- 5 924 557 ÷ 2 = 2 962 278 + 1;
- 2 962 278 ÷ 2 = 1 481 139 + 0;
- 1 481 139 ÷ 2 = 740 569 + 1;
- 740 569 ÷ 2 = 370 284 + 1;
- 370 284 ÷ 2 = 185 142 + 0;
- 185 142 ÷ 2 = 92 571 + 0;
- 92 571 ÷ 2 = 46 285 + 1;
- 46 285 ÷ 2 = 23 142 + 1;
- 23 142 ÷ 2 = 11 571 + 0;
- 11 571 ÷ 2 = 5 785 + 1;
- 5 785 ÷ 2 = 2 892 + 1;
- 2 892 ÷ 2 = 1 446 + 0;
- 1 446 ÷ 2 = 723 + 0;
- 723 ÷ 2 = 361 + 1;
- 361 ÷ 2 = 180 + 1;
- 180 ÷ 2 = 90 + 0;
- 90 ÷ 2 = 45 + 0;
- 45 ÷ 2 = 22 + 1;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 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.
758 343 308(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
758 343 308 (base 10) = 10 1101 0011 0011 0110 0110 1000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.