What are the required steps to convert base 10 decimal system
number 11 011 000 011 011 551 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;
- 11 011 000 011 011 551 ÷ 2 = 5 505 500 005 505 775 + 1;
- 5 505 500 005 505 775 ÷ 2 = 2 752 750 002 752 887 + 1;
- 2 752 750 002 752 887 ÷ 2 = 1 376 375 001 376 443 + 1;
- 1 376 375 001 376 443 ÷ 2 = 688 187 500 688 221 + 1;
- 688 187 500 688 221 ÷ 2 = 344 093 750 344 110 + 1;
- 344 093 750 344 110 ÷ 2 = 172 046 875 172 055 + 0;
- 172 046 875 172 055 ÷ 2 = 86 023 437 586 027 + 1;
- 86 023 437 586 027 ÷ 2 = 43 011 718 793 013 + 1;
- 43 011 718 793 013 ÷ 2 = 21 505 859 396 506 + 1;
- 21 505 859 396 506 ÷ 2 = 10 752 929 698 253 + 0;
- 10 752 929 698 253 ÷ 2 = 5 376 464 849 126 + 1;
- 5 376 464 849 126 ÷ 2 = 2 688 232 424 563 + 0;
- 2 688 232 424 563 ÷ 2 = 1 344 116 212 281 + 1;
- 1 344 116 212 281 ÷ 2 = 672 058 106 140 + 1;
- 672 058 106 140 ÷ 2 = 336 029 053 070 + 0;
- 336 029 053 070 ÷ 2 = 168 014 526 535 + 0;
- 168 014 526 535 ÷ 2 = 84 007 263 267 + 1;
- 84 007 263 267 ÷ 2 = 42 003 631 633 + 1;
- 42 003 631 633 ÷ 2 = 21 001 815 816 + 1;
- 21 001 815 816 ÷ 2 = 10 500 907 908 + 0;
- 10 500 907 908 ÷ 2 = 5 250 453 954 + 0;
- 5 250 453 954 ÷ 2 = 2 625 226 977 + 0;
- 2 625 226 977 ÷ 2 = 1 312 613 488 + 1;
- 1 312 613 488 ÷ 2 = 656 306 744 + 0;
- 656 306 744 ÷ 2 = 328 153 372 + 0;
- 328 153 372 ÷ 2 = 164 076 686 + 0;
- 164 076 686 ÷ 2 = 82 038 343 + 0;
- 82 038 343 ÷ 2 = 41 019 171 + 1;
- 41 019 171 ÷ 2 = 20 509 585 + 1;
- 20 509 585 ÷ 2 = 10 254 792 + 1;
- 10 254 792 ÷ 2 = 5 127 396 + 0;
- 5 127 396 ÷ 2 = 2 563 698 + 0;
- 2 563 698 ÷ 2 = 1 281 849 + 0;
- 1 281 849 ÷ 2 = 640 924 + 1;
- 640 924 ÷ 2 = 320 462 + 0;
- 320 462 ÷ 2 = 160 231 + 0;
- 160 231 ÷ 2 = 80 115 + 1;
- 80 115 ÷ 2 = 40 057 + 1;
- 40 057 ÷ 2 = 20 028 + 1;
- 20 028 ÷ 2 = 10 014 + 0;
- 10 014 ÷ 2 = 5 007 + 0;
- 5 007 ÷ 2 = 2 503 + 1;
- 2 503 ÷ 2 = 1 251 + 1;
- 1 251 ÷ 2 = 625 + 1;
- 625 ÷ 2 = 312 + 1;
- 312 ÷ 2 = 156 + 0;
- 156 ÷ 2 = 78 + 0;
- 78 ÷ 2 = 39 + 0;
- 39 ÷ 2 = 19 + 1;
- 19 ÷ 2 = 9 + 1;
- 9 ÷ 2 = 4 + 1;
- 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.
11 011 000 011 011 551(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 011 000 011 011 551 (base 10) = 10 0111 0001 1110 0111 0010 0011 1000 0100 0111 0011 0101 1101 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.