What are the required steps to convert base 10 decimal system
number 10 100 111 111 161 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;
- 10 100 111 111 161 ÷ 2 = 5 050 055 555 580 + 1;
- 5 050 055 555 580 ÷ 2 = 2 525 027 777 790 + 0;
- 2 525 027 777 790 ÷ 2 = 1 262 513 888 895 + 0;
- 1 262 513 888 895 ÷ 2 = 631 256 944 447 + 1;
- 631 256 944 447 ÷ 2 = 315 628 472 223 + 1;
- 315 628 472 223 ÷ 2 = 157 814 236 111 + 1;
- 157 814 236 111 ÷ 2 = 78 907 118 055 + 1;
- 78 907 118 055 ÷ 2 = 39 453 559 027 + 1;
- 39 453 559 027 ÷ 2 = 19 726 779 513 + 1;
- 19 726 779 513 ÷ 2 = 9 863 389 756 + 1;
- 9 863 389 756 ÷ 2 = 4 931 694 878 + 0;
- 4 931 694 878 ÷ 2 = 2 465 847 439 + 0;
- 2 465 847 439 ÷ 2 = 1 232 923 719 + 1;
- 1 232 923 719 ÷ 2 = 616 461 859 + 1;
- 616 461 859 ÷ 2 = 308 230 929 + 1;
- 308 230 929 ÷ 2 = 154 115 464 + 1;
- 154 115 464 ÷ 2 = 77 057 732 + 0;
- 77 057 732 ÷ 2 = 38 528 866 + 0;
- 38 528 866 ÷ 2 = 19 264 433 + 0;
- 19 264 433 ÷ 2 = 9 632 216 + 1;
- 9 632 216 ÷ 2 = 4 816 108 + 0;
- 4 816 108 ÷ 2 = 2 408 054 + 0;
- 2 408 054 ÷ 2 = 1 204 027 + 0;
- 1 204 027 ÷ 2 = 602 013 + 1;
- 602 013 ÷ 2 = 301 006 + 1;
- 301 006 ÷ 2 = 150 503 + 0;
- 150 503 ÷ 2 = 75 251 + 1;
- 75 251 ÷ 2 = 37 625 + 1;
- 37 625 ÷ 2 = 18 812 + 1;
- 18 812 ÷ 2 = 9 406 + 0;
- 9 406 ÷ 2 = 4 703 + 0;
- 4 703 ÷ 2 = 2 351 + 1;
- 2 351 ÷ 2 = 1 175 + 1;
- 1 175 ÷ 2 = 587 + 1;
- 587 ÷ 2 = 293 + 1;
- 293 ÷ 2 = 146 + 1;
- 146 ÷ 2 = 73 + 0;
- 73 ÷ 2 = 36 + 1;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 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.
10 100 111 111 161(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 100 111 111 161 (base 10) = 1001 0010 1111 1001 1101 1000 1000 1111 0011 1111 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.