What are the required steps to convert base 10 decimal system
number 284 803 830 071 141 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;
- 284 803 830 071 141 ÷ 2 = 142 401 915 035 570 + 1;
- 142 401 915 035 570 ÷ 2 = 71 200 957 517 785 + 0;
- 71 200 957 517 785 ÷ 2 = 35 600 478 758 892 + 1;
- 35 600 478 758 892 ÷ 2 = 17 800 239 379 446 + 0;
- 17 800 239 379 446 ÷ 2 = 8 900 119 689 723 + 0;
- 8 900 119 689 723 ÷ 2 = 4 450 059 844 861 + 1;
- 4 450 059 844 861 ÷ 2 = 2 225 029 922 430 + 1;
- 2 225 029 922 430 ÷ 2 = 1 112 514 961 215 + 0;
- 1 112 514 961 215 ÷ 2 = 556 257 480 607 + 1;
- 556 257 480 607 ÷ 2 = 278 128 740 303 + 1;
- 278 128 740 303 ÷ 2 = 139 064 370 151 + 1;
- 139 064 370 151 ÷ 2 = 69 532 185 075 + 1;
- 69 532 185 075 ÷ 2 = 34 766 092 537 + 1;
- 34 766 092 537 ÷ 2 = 17 383 046 268 + 1;
- 17 383 046 268 ÷ 2 = 8 691 523 134 + 0;
- 8 691 523 134 ÷ 2 = 4 345 761 567 + 0;
- 4 345 761 567 ÷ 2 = 2 172 880 783 + 1;
- 2 172 880 783 ÷ 2 = 1 086 440 391 + 1;
- 1 086 440 391 ÷ 2 = 543 220 195 + 1;
- 543 220 195 ÷ 2 = 271 610 097 + 1;
- 271 610 097 ÷ 2 = 135 805 048 + 1;
- 135 805 048 ÷ 2 = 67 902 524 + 0;
- 67 902 524 ÷ 2 = 33 951 262 + 0;
- 33 951 262 ÷ 2 = 16 975 631 + 0;
- 16 975 631 ÷ 2 = 8 487 815 + 1;
- 8 487 815 ÷ 2 = 4 243 907 + 1;
- 4 243 907 ÷ 2 = 2 121 953 + 1;
- 2 121 953 ÷ 2 = 1 060 976 + 1;
- 1 060 976 ÷ 2 = 530 488 + 0;
- 530 488 ÷ 2 = 265 244 + 0;
- 265 244 ÷ 2 = 132 622 + 0;
- 132 622 ÷ 2 = 66 311 + 0;
- 66 311 ÷ 2 = 33 155 + 1;
- 33 155 ÷ 2 = 16 577 + 1;
- 16 577 ÷ 2 = 8 288 + 1;
- 8 288 ÷ 2 = 4 144 + 0;
- 4 144 ÷ 2 = 2 072 + 0;
- 2 072 ÷ 2 = 1 036 + 0;
- 1 036 ÷ 2 = 518 + 0;
- 518 ÷ 2 = 259 + 0;
- 259 ÷ 2 = 129 + 1;
- 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.
284 803 830 071 141(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
284 803 830 071 141 (base 10) = 1 0000 0011 0000 0111 0000 1111 0001 1111 0011 1111 0110 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.