What are the required steps to convert base 10 decimal system
number 10 111 111 010 099 980 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 111 111 010 099 980 ÷ 2 = 5 055 555 505 049 990 + 0;
- 5 055 555 505 049 990 ÷ 2 = 2 527 777 752 524 995 + 0;
- 2 527 777 752 524 995 ÷ 2 = 1 263 888 876 262 497 + 1;
- 1 263 888 876 262 497 ÷ 2 = 631 944 438 131 248 + 1;
- 631 944 438 131 248 ÷ 2 = 315 972 219 065 624 + 0;
- 315 972 219 065 624 ÷ 2 = 157 986 109 532 812 + 0;
- 157 986 109 532 812 ÷ 2 = 78 993 054 766 406 + 0;
- 78 993 054 766 406 ÷ 2 = 39 496 527 383 203 + 0;
- 39 496 527 383 203 ÷ 2 = 19 748 263 691 601 + 1;
- 19 748 263 691 601 ÷ 2 = 9 874 131 845 800 + 1;
- 9 874 131 845 800 ÷ 2 = 4 937 065 922 900 + 0;
- 4 937 065 922 900 ÷ 2 = 2 468 532 961 450 + 0;
- 2 468 532 961 450 ÷ 2 = 1 234 266 480 725 + 0;
- 1 234 266 480 725 ÷ 2 = 617 133 240 362 + 1;
- 617 133 240 362 ÷ 2 = 308 566 620 181 + 0;
- 308 566 620 181 ÷ 2 = 154 283 310 090 + 1;
- 154 283 310 090 ÷ 2 = 77 141 655 045 + 0;
- 77 141 655 045 ÷ 2 = 38 570 827 522 + 1;
- 38 570 827 522 ÷ 2 = 19 285 413 761 + 0;
- 19 285 413 761 ÷ 2 = 9 642 706 880 + 1;
- 9 642 706 880 ÷ 2 = 4 821 353 440 + 0;
- 4 821 353 440 ÷ 2 = 2 410 676 720 + 0;
- 2 410 676 720 ÷ 2 = 1 205 338 360 + 0;
- 1 205 338 360 ÷ 2 = 602 669 180 + 0;
- 602 669 180 ÷ 2 = 301 334 590 + 0;
- 301 334 590 ÷ 2 = 150 667 295 + 0;
- 150 667 295 ÷ 2 = 75 333 647 + 1;
- 75 333 647 ÷ 2 = 37 666 823 + 1;
- 37 666 823 ÷ 2 = 18 833 411 + 1;
- 18 833 411 ÷ 2 = 9 416 705 + 1;
- 9 416 705 ÷ 2 = 4 708 352 + 1;
- 4 708 352 ÷ 2 = 2 354 176 + 0;
- 2 354 176 ÷ 2 = 1 177 088 + 0;
- 1 177 088 ÷ 2 = 588 544 + 0;
- 588 544 ÷ 2 = 294 272 + 0;
- 294 272 ÷ 2 = 147 136 + 0;
- 147 136 ÷ 2 = 73 568 + 0;
- 73 568 ÷ 2 = 36 784 + 0;
- 36 784 ÷ 2 = 18 392 + 0;
- 18 392 ÷ 2 = 9 196 + 0;
- 9 196 ÷ 2 = 4 598 + 0;
- 4 598 ÷ 2 = 2 299 + 0;
- 2 299 ÷ 2 = 1 149 + 1;
- 1 149 ÷ 2 = 574 + 1;
- 574 ÷ 2 = 287 + 0;
- 287 ÷ 2 = 143 + 1;
- 143 ÷ 2 = 71 + 1;
- 71 ÷ 2 = 35 + 1;
- 35 ÷ 2 = 17 + 1;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 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 111 111 010 099 980(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 111 111 010 099 980 (base 10) = 10 0011 1110 1100 0000 0000 0111 1100 0000 1010 1010 0011 0000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.