What are the required steps to convert base 10 decimal system
number 2 776 631 320 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 776 631 320 ÷ 2 = 1 388 315 660 + 0;
- 1 388 315 660 ÷ 2 = 694 157 830 + 0;
- 694 157 830 ÷ 2 = 347 078 915 + 0;
- 347 078 915 ÷ 2 = 173 539 457 + 1;
- 173 539 457 ÷ 2 = 86 769 728 + 1;
- 86 769 728 ÷ 2 = 43 384 864 + 0;
- 43 384 864 ÷ 2 = 21 692 432 + 0;
- 21 692 432 ÷ 2 = 10 846 216 + 0;
- 10 846 216 ÷ 2 = 5 423 108 + 0;
- 5 423 108 ÷ 2 = 2 711 554 + 0;
- 2 711 554 ÷ 2 = 1 355 777 + 0;
- 1 355 777 ÷ 2 = 677 888 + 1;
- 677 888 ÷ 2 = 338 944 + 0;
- 338 944 ÷ 2 = 169 472 + 0;
- 169 472 ÷ 2 = 84 736 + 0;
- 84 736 ÷ 2 = 42 368 + 0;
- 42 368 ÷ 2 = 21 184 + 0;
- 21 184 ÷ 2 = 10 592 + 0;
- 10 592 ÷ 2 = 5 296 + 0;
- 5 296 ÷ 2 = 2 648 + 0;
- 2 648 ÷ 2 = 1 324 + 0;
- 1 324 ÷ 2 = 662 + 0;
- 662 ÷ 2 = 331 + 0;
- 331 ÷ 2 = 165 + 1;
- 165 ÷ 2 = 82 + 1;
- 82 ÷ 2 = 41 + 0;
- 41 ÷ 2 = 20 + 1;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 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.
2 776 631 320(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 776 631 320 (base 10) = 1010 0101 1000 0000 0000 1000 0001 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.