What are the required steps to convert base 10 decimal system
number 3 214 321 233 214 483 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;
- 3 214 321 233 214 483 ÷ 2 = 1 607 160 616 607 241 + 1;
- 1 607 160 616 607 241 ÷ 2 = 803 580 308 303 620 + 1;
- 803 580 308 303 620 ÷ 2 = 401 790 154 151 810 + 0;
- 401 790 154 151 810 ÷ 2 = 200 895 077 075 905 + 0;
- 200 895 077 075 905 ÷ 2 = 100 447 538 537 952 + 1;
- 100 447 538 537 952 ÷ 2 = 50 223 769 268 976 + 0;
- 50 223 769 268 976 ÷ 2 = 25 111 884 634 488 + 0;
- 25 111 884 634 488 ÷ 2 = 12 555 942 317 244 + 0;
- 12 555 942 317 244 ÷ 2 = 6 277 971 158 622 + 0;
- 6 277 971 158 622 ÷ 2 = 3 138 985 579 311 + 0;
- 3 138 985 579 311 ÷ 2 = 1 569 492 789 655 + 1;
- 1 569 492 789 655 ÷ 2 = 784 746 394 827 + 1;
- 784 746 394 827 ÷ 2 = 392 373 197 413 + 1;
- 392 373 197 413 ÷ 2 = 196 186 598 706 + 1;
- 196 186 598 706 ÷ 2 = 98 093 299 353 + 0;
- 98 093 299 353 ÷ 2 = 49 046 649 676 + 1;
- 49 046 649 676 ÷ 2 = 24 523 324 838 + 0;
- 24 523 324 838 ÷ 2 = 12 261 662 419 + 0;
- 12 261 662 419 ÷ 2 = 6 130 831 209 + 1;
- 6 130 831 209 ÷ 2 = 3 065 415 604 + 1;
- 3 065 415 604 ÷ 2 = 1 532 707 802 + 0;
- 1 532 707 802 ÷ 2 = 766 353 901 + 0;
- 766 353 901 ÷ 2 = 383 176 950 + 1;
- 383 176 950 ÷ 2 = 191 588 475 + 0;
- 191 588 475 ÷ 2 = 95 794 237 + 1;
- 95 794 237 ÷ 2 = 47 897 118 + 1;
- 47 897 118 ÷ 2 = 23 948 559 + 0;
- 23 948 559 ÷ 2 = 11 974 279 + 1;
- 11 974 279 ÷ 2 = 5 987 139 + 1;
- 5 987 139 ÷ 2 = 2 993 569 + 1;
- 2 993 569 ÷ 2 = 1 496 784 + 1;
- 1 496 784 ÷ 2 = 748 392 + 0;
- 748 392 ÷ 2 = 374 196 + 0;
- 374 196 ÷ 2 = 187 098 + 0;
- 187 098 ÷ 2 = 93 549 + 0;
- 93 549 ÷ 2 = 46 774 + 1;
- 46 774 ÷ 2 = 23 387 + 0;
- 23 387 ÷ 2 = 11 693 + 1;
- 11 693 ÷ 2 = 5 846 + 1;
- 5 846 ÷ 2 = 2 923 + 0;
- 2 923 ÷ 2 = 1 461 + 1;
- 1 461 ÷ 2 = 730 + 1;
- 730 ÷ 2 = 365 + 0;
- 365 ÷ 2 = 182 + 1;
- 182 ÷ 2 = 91 + 0;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 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.
3 214 321 233 214 483(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 214 321 233 214 483 (base 10) = 1011 0110 1011 0110 1000 0111 1011 0100 1100 1011 1100 0001 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.