What are the required steps to convert base 10 decimal system
number 2 225 254 550 227 531 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;
- 2 225 254 550 227 531 ÷ 2 = 1 112 627 275 113 765 + 1;
- 1 112 627 275 113 765 ÷ 2 = 556 313 637 556 882 + 1;
- 556 313 637 556 882 ÷ 2 = 278 156 818 778 441 + 0;
- 278 156 818 778 441 ÷ 2 = 139 078 409 389 220 + 1;
- 139 078 409 389 220 ÷ 2 = 69 539 204 694 610 + 0;
- 69 539 204 694 610 ÷ 2 = 34 769 602 347 305 + 0;
- 34 769 602 347 305 ÷ 2 = 17 384 801 173 652 + 1;
- 17 384 801 173 652 ÷ 2 = 8 692 400 586 826 + 0;
- 8 692 400 586 826 ÷ 2 = 4 346 200 293 413 + 0;
- 4 346 200 293 413 ÷ 2 = 2 173 100 146 706 + 1;
- 2 173 100 146 706 ÷ 2 = 1 086 550 073 353 + 0;
- 1 086 550 073 353 ÷ 2 = 543 275 036 676 + 1;
- 543 275 036 676 ÷ 2 = 271 637 518 338 + 0;
- 271 637 518 338 ÷ 2 = 135 818 759 169 + 0;
- 135 818 759 169 ÷ 2 = 67 909 379 584 + 1;
- 67 909 379 584 ÷ 2 = 33 954 689 792 + 0;
- 33 954 689 792 ÷ 2 = 16 977 344 896 + 0;
- 16 977 344 896 ÷ 2 = 8 488 672 448 + 0;
- 8 488 672 448 ÷ 2 = 4 244 336 224 + 0;
- 4 244 336 224 ÷ 2 = 2 122 168 112 + 0;
- 2 122 168 112 ÷ 2 = 1 061 084 056 + 0;
- 1 061 084 056 ÷ 2 = 530 542 028 + 0;
- 530 542 028 ÷ 2 = 265 271 014 + 0;
- 265 271 014 ÷ 2 = 132 635 507 + 0;
- 132 635 507 ÷ 2 = 66 317 753 + 1;
- 66 317 753 ÷ 2 = 33 158 876 + 1;
- 33 158 876 ÷ 2 = 16 579 438 + 0;
- 16 579 438 ÷ 2 = 8 289 719 + 0;
- 8 289 719 ÷ 2 = 4 144 859 + 1;
- 4 144 859 ÷ 2 = 2 072 429 + 1;
- 2 072 429 ÷ 2 = 1 036 214 + 1;
- 1 036 214 ÷ 2 = 518 107 + 0;
- 518 107 ÷ 2 = 259 053 + 1;
- 259 053 ÷ 2 = 129 526 + 1;
- 129 526 ÷ 2 = 64 763 + 0;
- 64 763 ÷ 2 = 32 381 + 1;
- 32 381 ÷ 2 = 16 190 + 1;
- 16 190 ÷ 2 = 8 095 + 0;
- 8 095 ÷ 2 = 4 047 + 1;
- 4 047 ÷ 2 = 2 023 + 1;
- 2 023 ÷ 2 = 1 011 + 1;
- 1 011 ÷ 2 = 505 + 1;
- 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.
2 225 254 550 227 531(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 225 254 550 227 531 (base 10) = 111 1110 0111 1101 1011 0111 0011 0000 0000 0100 1010 0100 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.