What are the required steps to convert base 10 decimal system
number 1 646 133 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;
- 1 646 133 293 ÷ 2 = 823 066 646 + 1;
- 823 066 646 ÷ 2 = 411 533 323 + 0;
- 411 533 323 ÷ 2 = 205 766 661 + 1;
- 205 766 661 ÷ 2 = 102 883 330 + 1;
- 102 883 330 ÷ 2 = 51 441 665 + 0;
- 51 441 665 ÷ 2 = 25 720 832 + 1;
- 25 720 832 ÷ 2 = 12 860 416 + 0;
- 12 860 416 ÷ 2 = 6 430 208 + 0;
- 6 430 208 ÷ 2 = 3 215 104 + 0;
- 3 215 104 ÷ 2 = 1 607 552 + 0;
- 1 607 552 ÷ 2 = 803 776 + 0;
- 803 776 ÷ 2 = 401 888 + 0;
- 401 888 ÷ 2 = 200 944 + 0;
- 200 944 ÷ 2 = 100 472 + 0;
- 100 472 ÷ 2 = 50 236 + 0;
- 50 236 ÷ 2 = 25 118 + 0;
- 25 118 ÷ 2 = 12 559 + 0;
- 12 559 ÷ 2 = 6 279 + 1;
- 6 279 ÷ 2 = 3 139 + 1;
- 3 139 ÷ 2 = 1 569 + 1;
- 1 569 ÷ 2 = 784 + 1;
- 784 ÷ 2 = 392 + 0;
- 392 ÷ 2 = 196 + 0;
- 196 ÷ 2 = 98 + 0;
- 98 ÷ 2 = 49 + 0;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
1 646 133 293(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 646 133 293 (base 10) = 110 0010 0001 1110 0000 0000 0010 1101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.