What are the required steps to convert base 10 decimal system
number 2 554 339 763 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;
- 2 554 339 763 ÷ 2 = 1 277 169 881 + 1;
- 1 277 169 881 ÷ 2 = 638 584 940 + 1;
- 638 584 940 ÷ 2 = 319 292 470 + 0;
- 319 292 470 ÷ 2 = 159 646 235 + 0;
- 159 646 235 ÷ 2 = 79 823 117 + 1;
- 79 823 117 ÷ 2 = 39 911 558 + 1;
- 39 911 558 ÷ 2 = 19 955 779 + 0;
- 19 955 779 ÷ 2 = 9 977 889 + 1;
- 9 977 889 ÷ 2 = 4 988 944 + 1;
- 4 988 944 ÷ 2 = 2 494 472 + 0;
- 2 494 472 ÷ 2 = 1 247 236 + 0;
- 1 247 236 ÷ 2 = 623 618 + 0;
- 623 618 ÷ 2 = 311 809 + 0;
- 311 809 ÷ 2 = 155 904 + 1;
- 155 904 ÷ 2 = 77 952 + 0;
- 77 952 ÷ 2 = 38 976 + 0;
- 38 976 ÷ 2 = 19 488 + 0;
- 19 488 ÷ 2 = 9 744 + 0;
- 9 744 ÷ 2 = 4 872 + 0;
- 4 872 ÷ 2 = 2 436 + 0;
- 2 436 ÷ 2 = 1 218 + 0;
- 1 218 ÷ 2 = 609 + 0;
- 609 ÷ 2 = 304 + 1;
- 304 ÷ 2 = 152 + 0;
- 152 ÷ 2 = 76 + 0;
- 76 ÷ 2 = 38 + 0;
- 38 ÷ 2 = 19 + 0;
- 19 ÷ 2 = 9 + 1;
- 9 ÷ 2 = 4 + 1;
- 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.
2 554 339 763(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 554 339 763 (base 10) = 1001 1000 0100 0000 0010 0001 1011 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.