What are the required steps to convert base 10 decimal system
number 3 233 284 079 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;
- 3 233 284 079 ÷ 2 = 1 616 642 039 + 1;
- 1 616 642 039 ÷ 2 = 808 321 019 + 1;
- 808 321 019 ÷ 2 = 404 160 509 + 1;
- 404 160 509 ÷ 2 = 202 080 254 + 1;
- 202 080 254 ÷ 2 = 101 040 127 + 0;
- 101 040 127 ÷ 2 = 50 520 063 + 1;
- 50 520 063 ÷ 2 = 25 260 031 + 1;
- 25 260 031 ÷ 2 = 12 630 015 + 1;
- 12 630 015 ÷ 2 = 6 315 007 + 1;
- 6 315 007 ÷ 2 = 3 157 503 + 1;
- 3 157 503 ÷ 2 = 1 578 751 + 1;
- 1 578 751 ÷ 2 = 789 375 + 1;
- 789 375 ÷ 2 = 394 687 + 1;
- 394 687 ÷ 2 = 197 343 + 1;
- 197 343 ÷ 2 = 98 671 + 1;
- 98 671 ÷ 2 = 49 335 + 1;
- 49 335 ÷ 2 = 24 667 + 1;
- 24 667 ÷ 2 = 12 333 + 1;
- 12 333 ÷ 2 = 6 166 + 1;
- 6 166 ÷ 2 = 3 083 + 0;
- 3 083 ÷ 2 = 1 541 + 1;
- 1 541 ÷ 2 = 770 + 1;
- 770 ÷ 2 = 385 + 0;
- 385 ÷ 2 = 192 + 1;
- 192 ÷ 2 = 96 + 0;
- 96 ÷ 2 = 48 + 0;
- 48 ÷ 2 = 24 + 0;
- 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.
3 233 284 079(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 233 284 079 (base 10) = 1100 0000 1011 0111 1111 1111 1110 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.