What are the required steps to convert base 10 decimal system
number 754 572 556 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;
- 754 572 556 ÷ 2 = 377 286 278 + 0;
- 377 286 278 ÷ 2 = 188 643 139 + 0;
- 188 643 139 ÷ 2 = 94 321 569 + 1;
- 94 321 569 ÷ 2 = 47 160 784 + 1;
- 47 160 784 ÷ 2 = 23 580 392 + 0;
- 23 580 392 ÷ 2 = 11 790 196 + 0;
- 11 790 196 ÷ 2 = 5 895 098 + 0;
- 5 895 098 ÷ 2 = 2 947 549 + 0;
- 2 947 549 ÷ 2 = 1 473 774 + 1;
- 1 473 774 ÷ 2 = 736 887 + 0;
- 736 887 ÷ 2 = 368 443 + 1;
- 368 443 ÷ 2 = 184 221 + 1;
- 184 221 ÷ 2 = 92 110 + 1;
- 92 110 ÷ 2 = 46 055 + 0;
- 46 055 ÷ 2 = 23 027 + 1;
- 23 027 ÷ 2 = 11 513 + 1;
- 11 513 ÷ 2 = 5 756 + 1;
- 5 756 ÷ 2 = 2 878 + 0;
- 2 878 ÷ 2 = 1 439 + 0;
- 1 439 ÷ 2 = 719 + 1;
- 719 ÷ 2 = 359 + 1;
- 359 ÷ 2 = 179 + 1;
- 179 ÷ 2 = 89 + 1;
- 89 ÷ 2 = 44 + 1;
- 44 ÷ 2 = 22 + 0;
- 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.
754 572 556(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
754 572 556 (base 10) = 10 1100 1111 1001 1101 1101 0000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.