What are the required steps to convert base 10 decimal system
number 10 110 099 999 770 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;
- 10 110 099 999 770 ÷ 2 = 5 055 049 999 885 + 0;
- 5 055 049 999 885 ÷ 2 = 2 527 524 999 942 + 1;
- 2 527 524 999 942 ÷ 2 = 1 263 762 499 971 + 0;
- 1 263 762 499 971 ÷ 2 = 631 881 249 985 + 1;
- 631 881 249 985 ÷ 2 = 315 940 624 992 + 1;
- 315 940 624 992 ÷ 2 = 157 970 312 496 + 0;
- 157 970 312 496 ÷ 2 = 78 985 156 248 + 0;
- 78 985 156 248 ÷ 2 = 39 492 578 124 + 0;
- 39 492 578 124 ÷ 2 = 19 746 289 062 + 0;
- 19 746 289 062 ÷ 2 = 9 873 144 531 + 0;
- 9 873 144 531 ÷ 2 = 4 936 572 265 + 1;
- 4 936 572 265 ÷ 2 = 2 468 286 132 + 1;
- 2 468 286 132 ÷ 2 = 1 234 143 066 + 0;
- 1 234 143 066 ÷ 2 = 617 071 533 + 0;
- 617 071 533 ÷ 2 = 308 535 766 + 1;
- 308 535 766 ÷ 2 = 154 267 883 + 0;
- 154 267 883 ÷ 2 = 77 133 941 + 1;
- 77 133 941 ÷ 2 = 38 566 970 + 1;
- 38 566 970 ÷ 2 = 19 283 485 + 0;
- 19 283 485 ÷ 2 = 9 641 742 + 1;
- 9 641 742 ÷ 2 = 4 820 871 + 0;
- 4 820 871 ÷ 2 = 2 410 435 + 1;
- 2 410 435 ÷ 2 = 1 205 217 + 1;
- 1 205 217 ÷ 2 = 602 608 + 1;
- 602 608 ÷ 2 = 301 304 + 0;
- 301 304 ÷ 2 = 150 652 + 0;
- 150 652 ÷ 2 = 75 326 + 0;
- 75 326 ÷ 2 = 37 663 + 0;
- 37 663 ÷ 2 = 18 831 + 1;
- 18 831 ÷ 2 = 9 415 + 1;
- 9 415 ÷ 2 = 4 707 + 1;
- 4 707 ÷ 2 = 2 353 + 1;
- 2 353 ÷ 2 = 1 176 + 1;
- 1 176 ÷ 2 = 588 + 0;
- 588 ÷ 2 = 294 + 0;
- 294 ÷ 2 = 147 + 0;
- 147 ÷ 2 = 73 + 1;
- 73 ÷ 2 = 36 + 1;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 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.
10 110 099 999 770(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 110 099 999 770 (base 10) = 1001 0011 0001 1111 0000 1110 1011 0100 1100 0001 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.