What are the required steps to convert base 10 decimal system
number 1 010 110 011 100 082 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 010 110 011 100 082 ÷ 2 = 505 055 005 550 041 + 0;
- 505 055 005 550 041 ÷ 2 = 252 527 502 775 020 + 1;
- 252 527 502 775 020 ÷ 2 = 126 263 751 387 510 + 0;
- 126 263 751 387 510 ÷ 2 = 63 131 875 693 755 + 0;
- 63 131 875 693 755 ÷ 2 = 31 565 937 846 877 + 1;
- 31 565 937 846 877 ÷ 2 = 15 782 968 923 438 + 1;
- 15 782 968 923 438 ÷ 2 = 7 891 484 461 719 + 0;
- 7 891 484 461 719 ÷ 2 = 3 945 742 230 859 + 1;
- 3 945 742 230 859 ÷ 2 = 1 972 871 115 429 + 1;
- 1 972 871 115 429 ÷ 2 = 986 435 557 714 + 1;
- 986 435 557 714 ÷ 2 = 493 217 778 857 + 0;
- 493 217 778 857 ÷ 2 = 246 608 889 428 + 1;
- 246 608 889 428 ÷ 2 = 123 304 444 714 + 0;
- 123 304 444 714 ÷ 2 = 61 652 222 357 + 0;
- 61 652 222 357 ÷ 2 = 30 826 111 178 + 1;
- 30 826 111 178 ÷ 2 = 15 413 055 589 + 0;
- 15 413 055 589 ÷ 2 = 7 706 527 794 + 1;
- 7 706 527 794 ÷ 2 = 3 853 263 897 + 0;
- 3 853 263 897 ÷ 2 = 1 926 631 948 + 1;
- 1 926 631 948 ÷ 2 = 963 315 974 + 0;
- 963 315 974 ÷ 2 = 481 657 987 + 0;
- 481 657 987 ÷ 2 = 240 828 993 + 1;
- 240 828 993 ÷ 2 = 120 414 496 + 1;
- 120 414 496 ÷ 2 = 60 207 248 + 0;
- 60 207 248 ÷ 2 = 30 103 624 + 0;
- 30 103 624 ÷ 2 = 15 051 812 + 0;
- 15 051 812 ÷ 2 = 7 525 906 + 0;
- 7 525 906 ÷ 2 = 3 762 953 + 0;
- 3 762 953 ÷ 2 = 1 881 476 + 1;
- 1 881 476 ÷ 2 = 940 738 + 0;
- 940 738 ÷ 2 = 470 369 + 0;
- 470 369 ÷ 2 = 235 184 + 1;
- 235 184 ÷ 2 = 117 592 + 0;
- 117 592 ÷ 2 = 58 796 + 0;
- 58 796 ÷ 2 = 29 398 + 0;
- 29 398 ÷ 2 = 14 699 + 0;
- 14 699 ÷ 2 = 7 349 + 1;
- 7 349 ÷ 2 = 3 674 + 1;
- 3 674 ÷ 2 = 1 837 + 0;
- 1 837 ÷ 2 = 918 + 1;
- 918 ÷ 2 = 459 + 0;
- 459 ÷ 2 = 229 + 1;
- 229 ÷ 2 = 114 + 1;
- 114 ÷ 2 = 57 + 0;
- 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 010 110 011 100 082(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 010 110 011 100 082 (base 10) = 11 1001 0110 1011 0000 1001 0000 0110 0101 0100 1011 1011 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.