What are the required steps to convert base 10 decimal system
number 3 092 596 623 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 092 596 623 ÷ 2 = 1 546 298 311 + 1;
- 1 546 298 311 ÷ 2 = 773 149 155 + 1;
- 773 149 155 ÷ 2 = 386 574 577 + 1;
- 386 574 577 ÷ 2 = 193 287 288 + 1;
- 193 287 288 ÷ 2 = 96 643 644 + 0;
- 96 643 644 ÷ 2 = 48 321 822 + 0;
- 48 321 822 ÷ 2 = 24 160 911 + 0;
- 24 160 911 ÷ 2 = 12 080 455 + 1;
- 12 080 455 ÷ 2 = 6 040 227 + 1;
- 6 040 227 ÷ 2 = 3 020 113 + 1;
- 3 020 113 ÷ 2 = 1 510 056 + 1;
- 1 510 056 ÷ 2 = 755 028 + 0;
- 755 028 ÷ 2 = 377 514 + 0;
- 377 514 ÷ 2 = 188 757 + 0;
- 188 757 ÷ 2 = 94 378 + 1;
- 94 378 ÷ 2 = 47 189 + 0;
- 47 189 ÷ 2 = 23 594 + 1;
- 23 594 ÷ 2 = 11 797 + 0;
- 11 797 ÷ 2 = 5 898 + 1;
- 5 898 ÷ 2 = 2 949 + 0;
- 2 949 ÷ 2 = 1 474 + 1;
- 1 474 ÷ 2 = 737 + 0;
- 737 ÷ 2 = 368 + 1;
- 368 ÷ 2 = 184 + 0;
- 184 ÷ 2 = 92 + 0;
- 92 ÷ 2 = 46 + 0;
- 46 ÷ 2 = 23 + 0;
- 23 ÷ 2 = 11 + 1;
- 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.
3 092 596 623(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 092 596 623 (base 10) = 1011 1000 0101 0101 0100 0111 1000 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.