What are the required steps to convert base 10 decimal system
number 1 111 010 100 009 784 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 111 010 100 009 784 ÷ 2 = 555 505 050 004 892 + 0;
- 555 505 050 004 892 ÷ 2 = 277 752 525 002 446 + 0;
- 277 752 525 002 446 ÷ 2 = 138 876 262 501 223 + 0;
- 138 876 262 501 223 ÷ 2 = 69 438 131 250 611 + 1;
- 69 438 131 250 611 ÷ 2 = 34 719 065 625 305 + 1;
- 34 719 065 625 305 ÷ 2 = 17 359 532 812 652 + 1;
- 17 359 532 812 652 ÷ 2 = 8 679 766 406 326 + 0;
- 8 679 766 406 326 ÷ 2 = 4 339 883 203 163 + 0;
- 4 339 883 203 163 ÷ 2 = 2 169 941 601 581 + 1;
- 2 169 941 601 581 ÷ 2 = 1 084 970 800 790 + 1;
- 1 084 970 800 790 ÷ 2 = 542 485 400 395 + 0;
- 542 485 400 395 ÷ 2 = 271 242 700 197 + 1;
- 271 242 700 197 ÷ 2 = 135 621 350 098 + 1;
- 135 621 350 098 ÷ 2 = 67 810 675 049 + 0;
- 67 810 675 049 ÷ 2 = 33 905 337 524 + 1;
- 33 905 337 524 ÷ 2 = 16 952 668 762 + 0;
- 16 952 668 762 ÷ 2 = 8 476 334 381 + 0;
- 8 476 334 381 ÷ 2 = 4 238 167 190 + 1;
- 4 238 167 190 ÷ 2 = 2 119 083 595 + 0;
- 2 119 083 595 ÷ 2 = 1 059 541 797 + 1;
- 1 059 541 797 ÷ 2 = 529 770 898 + 1;
- 529 770 898 ÷ 2 = 264 885 449 + 0;
- 264 885 449 ÷ 2 = 132 442 724 + 1;
- 132 442 724 ÷ 2 = 66 221 362 + 0;
- 66 221 362 ÷ 2 = 33 110 681 + 0;
- 33 110 681 ÷ 2 = 16 555 340 + 1;
- 16 555 340 ÷ 2 = 8 277 670 + 0;
- 8 277 670 ÷ 2 = 4 138 835 + 0;
- 4 138 835 ÷ 2 = 2 069 417 + 1;
- 2 069 417 ÷ 2 = 1 034 708 + 1;
- 1 034 708 ÷ 2 = 517 354 + 0;
- 517 354 ÷ 2 = 258 677 + 0;
- 258 677 ÷ 2 = 129 338 + 1;
- 129 338 ÷ 2 = 64 669 + 0;
- 64 669 ÷ 2 = 32 334 + 1;
- 32 334 ÷ 2 = 16 167 + 0;
- 16 167 ÷ 2 = 8 083 + 1;
- 8 083 ÷ 2 = 4 041 + 1;
- 4 041 ÷ 2 = 2 020 + 1;
- 2 020 ÷ 2 = 1 010 + 0;
- 1 010 ÷ 2 = 505 + 0;
- 505 ÷ 2 = 252 + 1;
- 252 ÷ 2 = 126 + 0;
- 126 ÷ 2 = 63 + 0;
- 63 ÷ 2 = 31 + 1;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 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 111 010 100 009 784(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 111 010 100 009 784 (base 10) = 11 1111 0010 0111 0101 0011 0010 0101 1010 0101 1011 0011 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.