What are the required steps to convert base 10 decimal system
number 1 990 608 011 182 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;
- 1 990 608 011 182 ÷ 2 = 995 304 005 591 + 0;
- 995 304 005 591 ÷ 2 = 497 652 002 795 + 1;
- 497 652 002 795 ÷ 2 = 248 826 001 397 + 1;
- 248 826 001 397 ÷ 2 = 124 413 000 698 + 1;
- 124 413 000 698 ÷ 2 = 62 206 500 349 + 0;
- 62 206 500 349 ÷ 2 = 31 103 250 174 + 1;
- 31 103 250 174 ÷ 2 = 15 551 625 087 + 0;
- 15 551 625 087 ÷ 2 = 7 775 812 543 + 1;
- 7 775 812 543 ÷ 2 = 3 887 906 271 + 1;
- 3 887 906 271 ÷ 2 = 1 943 953 135 + 1;
- 1 943 953 135 ÷ 2 = 971 976 567 + 1;
- 971 976 567 ÷ 2 = 485 988 283 + 1;
- 485 988 283 ÷ 2 = 242 994 141 + 1;
- 242 994 141 ÷ 2 = 121 497 070 + 1;
- 121 497 070 ÷ 2 = 60 748 535 + 0;
- 60 748 535 ÷ 2 = 30 374 267 + 1;
- 30 374 267 ÷ 2 = 15 187 133 + 1;
- 15 187 133 ÷ 2 = 7 593 566 + 1;
- 7 593 566 ÷ 2 = 3 796 783 + 0;
- 3 796 783 ÷ 2 = 1 898 391 + 1;
- 1 898 391 ÷ 2 = 949 195 + 1;
- 949 195 ÷ 2 = 474 597 + 1;
- 474 597 ÷ 2 = 237 298 + 1;
- 237 298 ÷ 2 = 118 649 + 0;
- 118 649 ÷ 2 = 59 324 + 1;
- 59 324 ÷ 2 = 29 662 + 0;
- 29 662 ÷ 2 = 14 831 + 0;
- 14 831 ÷ 2 = 7 415 + 1;
- 7 415 ÷ 2 = 3 707 + 1;
- 3 707 ÷ 2 = 1 853 + 1;
- 1 853 ÷ 2 = 926 + 1;
- 926 ÷ 2 = 463 + 0;
- 463 ÷ 2 = 231 + 1;
- 231 ÷ 2 = 115 + 1;
- 115 ÷ 2 = 57 + 1;
- 57 ÷ 2 = 28 + 1;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 7 ÷ 2 = 3 + 1;
- 3 ÷ 2 = 1 + 1;
- 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.
1 990 608 011 182(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 990 608 011 182 (base 10) = 1 1100 1111 0111 1001 0111 1011 1011 1111 1010 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.