What are the required steps to convert base 10 decimal system
number 1 011 011 011 010 124 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 011 011 011 010 124 ÷ 2 = 505 505 505 505 062 + 0;
- 505 505 505 505 062 ÷ 2 = 252 752 752 752 531 + 0;
- 252 752 752 752 531 ÷ 2 = 126 376 376 376 265 + 1;
- 126 376 376 376 265 ÷ 2 = 63 188 188 188 132 + 1;
- 63 188 188 188 132 ÷ 2 = 31 594 094 094 066 + 0;
- 31 594 094 094 066 ÷ 2 = 15 797 047 047 033 + 0;
- 15 797 047 047 033 ÷ 2 = 7 898 523 523 516 + 1;
- 7 898 523 523 516 ÷ 2 = 3 949 261 761 758 + 0;
- 3 949 261 761 758 ÷ 2 = 1 974 630 880 879 + 0;
- 1 974 630 880 879 ÷ 2 = 987 315 440 439 + 1;
- 987 315 440 439 ÷ 2 = 493 657 720 219 + 1;
- 493 657 720 219 ÷ 2 = 246 828 860 109 + 1;
- 246 828 860 109 ÷ 2 = 123 414 430 054 + 1;
- 123 414 430 054 ÷ 2 = 61 707 215 027 + 0;
- 61 707 215 027 ÷ 2 = 30 853 607 513 + 1;
- 30 853 607 513 ÷ 2 = 15 426 803 756 + 1;
- 15 426 803 756 ÷ 2 = 7 713 401 878 + 0;
- 7 713 401 878 ÷ 2 = 3 856 700 939 + 0;
- 3 856 700 939 ÷ 2 = 1 928 350 469 + 1;
- 1 928 350 469 ÷ 2 = 964 175 234 + 1;
- 964 175 234 ÷ 2 = 482 087 617 + 0;
- 482 087 617 ÷ 2 = 241 043 808 + 1;
- 241 043 808 ÷ 2 = 120 521 904 + 0;
- 120 521 904 ÷ 2 = 60 260 952 + 0;
- 60 260 952 ÷ 2 = 30 130 476 + 0;
- 30 130 476 ÷ 2 = 15 065 238 + 0;
- 15 065 238 ÷ 2 = 7 532 619 + 0;
- 7 532 619 ÷ 2 = 3 766 309 + 1;
- 3 766 309 ÷ 2 = 1 883 154 + 1;
- 1 883 154 ÷ 2 = 941 577 + 0;
- 941 577 ÷ 2 = 470 788 + 1;
- 470 788 ÷ 2 = 235 394 + 0;
- 235 394 ÷ 2 = 117 697 + 0;
- 117 697 ÷ 2 = 58 848 + 1;
- 58 848 ÷ 2 = 29 424 + 0;
- 29 424 ÷ 2 = 14 712 + 0;
- 14 712 ÷ 2 = 7 356 + 0;
- 7 356 ÷ 2 = 3 678 + 0;
- 3 678 ÷ 2 = 1 839 + 0;
- 1 839 ÷ 2 = 919 + 1;
- 919 ÷ 2 = 459 + 1;
- 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 011 011 011 010 124(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 011 011 011 010 124 (base 10) = 11 1001 0111 1000 0010 0101 1000 0010 1100 1101 1110 0100 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.