What are the required steps to convert base 10 decimal system
number 10 001 101 011 333 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 001 101 011 333 ÷ 2 = 5 000 550 505 666 + 1;
- 5 000 550 505 666 ÷ 2 = 2 500 275 252 833 + 0;
- 2 500 275 252 833 ÷ 2 = 1 250 137 626 416 + 1;
- 1 250 137 626 416 ÷ 2 = 625 068 813 208 + 0;
- 625 068 813 208 ÷ 2 = 312 534 406 604 + 0;
- 312 534 406 604 ÷ 2 = 156 267 203 302 + 0;
- 156 267 203 302 ÷ 2 = 78 133 601 651 + 0;
- 78 133 601 651 ÷ 2 = 39 066 800 825 + 1;
- 39 066 800 825 ÷ 2 = 19 533 400 412 + 1;
- 19 533 400 412 ÷ 2 = 9 766 700 206 + 0;
- 9 766 700 206 ÷ 2 = 4 883 350 103 + 0;
- 4 883 350 103 ÷ 2 = 2 441 675 051 + 1;
- 2 441 675 051 ÷ 2 = 1 220 837 525 + 1;
- 1 220 837 525 ÷ 2 = 610 418 762 + 1;
- 610 418 762 ÷ 2 = 305 209 381 + 0;
- 305 209 381 ÷ 2 = 152 604 690 + 1;
- 152 604 690 ÷ 2 = 76 302 345 + 0;
- 76 302 345 ÷ 2 = 38 151 172 + 1;
- 38 151 172 ÷ 2 = 19 075 586 + 0;
- 19 075 586 ÷ 2 = 9 537 793 + 0;
- 9 537 793 ÷ 2 = 4 768 896 + 1;
- 4 768 896 ÷ 2 = 2 384 448 + 0;
- 2 384 448 ÷ 2 = 1 192 224 + 0;
- 1 192 224 ÷ 2 = 596 112 + 0;
- 596 112 ÷ 2 = 298 056 + 0;
- 298 056 ÷ 2 = 149 028 + 0;
- 149 028 ÷ 2 = 74 514 + 0;
- 74 514 ÷ 2 = 37 257 + 0;
- 37 257 ÷ 2 = 18 628 + 1;
- 18 628 ÷ 2 = 9 314 + 0;
- 9 314 ÷ 2 = 4 657 + 0;
- 4 657 ÷ 2 = 2 328 + 1;
- 2 328 ÷ 2 = 1 164 + 0;
- 1 164 ÷ 2 = 582 + 0;
- 582 ÷ 2 = 291 + 0;
- 291 ÷ 2 = 145 + 1;
- 145 ÷ 2 = 72 + 1;
- 72 ÷ 2 = 36 + 0;
- 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 001 101 011 333(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 001 101 011 333 (base 10) = 1001 0001 1000 1001 0000 0001 0010 1011 1001 1000 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.