What are the required steps to convert base 10 decimal system
number 555 555 571 352 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;
- 555 555 571 352 ÷ 2 = 277 777 785 676 + 0;
- 277 777 785 676 ÷ 2 = 138 888 892 838 + 0;
- 138 888 892 838 ÷ 2 = 69 444 446 419 + 0;
- 69 444 446 419 ÷ 2 = 34 722 223 209 + 1;
- 34 722 223 209 ÷ 2 = 17 361 111 604 + 1;
- 17 361 111 604 ÷ 2 = 8 680 555 802 + 0;
- 8 680 555 802 ÷ 2 = 4 340 277 901 + 0;
- 4 340 277 901 ÷ 2 = 2 170 138 950 + 1;
- 2 170 138 950 ÷ 2 = 1 085 069 475 + 0;
- 1 085 069 475 ÷ 2 = 542 534 737 + 1;
- 542 534 737 ÷ 2 = 271 267 368 + 1;
- 271 267 368 ÷ 2 = 135 633 684 + 0;
- 135 633 684 ÷ 2 = 67 816 842 + 0;
- 67 816 842 ÷ 2 = 33 908 421 + 0;
- 33 908 421 ÷ 2 = 16 954 210 + 1;
- 16 954 210 ÷ 2 = 8 477 105 + 0;
- 8 477 105 ÷ 2 = 4 238 552 + 1;
- 4 238 552 ÷ 2 = 2 119 276 + 0;
- 2 119 276 ÷ 2 = 1 059 638 + 0;
- 1 059 638 ÷ 2 = 529 819 + 0;
- 529 819 ÷ 2 = 264 909 + 1;
- 264 909 ÷ 2 = 132 454 + 1;
- 132 454 ÷ 2 = 66 227 + 0;
- 66 227 ÷ 2 = 33 113 + 1;
- 33 113 ÷ 2 = 16 556 + 1;
- 16 556 ÷ 2 = 8 278 + 0;
- 8 278 ÷ 2 = 4 139 + 0;
- 4 139 ÷ 2 = 2 069 + 1;
- 2 069 ÷ 2 = 1 034 + 1;
- 1 034 ÷ 2 = 517 + 0;
- 517 ÷ 2 = 258 + 1;
- 258 ÷ 2 = 129 + 0;
- 129 ÷ 2 = 64 + 1;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
555 555 571 352(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
555 555 571 352 (base 10) = 1000 0001 0101 1001 1011 0001 0100 0110 1001 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.