What are the required steps to convert base 10 decimal system
number 867 239 022 216 956 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;
- 867 239 022 216 956 ÷ 2 = 433 619 511 108 478 + 0;
- 433 619 511 108 478 ÷ 2 = 216 809 755 554 239 + 0;
- 216 809 755 554 239 ÷ 2 = 108 404 877 777 119 + 1;
- 108 404 877 777 119 ÷ 2 = 54 202 438 888 559 + 1;
- 54 202 438 888 559 ÷ 2 = 27 101 219 444 279 + 1;
- 27 101 219 444 279 ÷ 2 = 13 550 609 722 139 + 1;
- 13 550 609 722 139 ÷ 2 = 6 775 304 861 069 + 1;
- 6 775 304 861 069 ÷ 2 = 3 387 652 430 534 + 1;
- 3 387 652 430 534 ÷ 2 = 1 693 826 215 267 + 0;
- 1 693 826 215 267 ÷ 2 = 846 913 107 633 + 1;
- 846 913 107 633 ÷ 2 = 423 456 553 816 + 1;
- 423 456 553 816 ÷ 2 = 211 728 276 908 + 0;
- 211 728 276 908 ÷ 2 = 105 864 138 454 + 0;
- 105 864 138 454 ÷ 2 = 52 932 069 227 + 0;
- 52 932 069 227 ÷ 2 = 26 466 034 613 + 1;
- 26 466 034 613 ÷ 2 = 13 233 017 306 + 1;
- 13 233 017 306 ÷ 2 = 6 616 508 653 + 0;
- 6 616 508 653 ÷ 2 = 3 308 254 326 + 1;
- 3 308 254 326 ÷ 2 = 1 654 127 163 + 0;
- 1 654 127 163 ÷ 2 = 827 063 581 + 1;
- 827 063 581 ÷ 2 = 413 531 790 + 1;
- 413 531 790 ÷ 2 = 206 765 895 + 0;
- 206 765 895 ÷ 2 = 103 382 947 + 1;
- 103 382 947 ÷ 2 = 51 691 473 + 1;
- 51 691 473 ÷ 2 = 25 845 736 + 1;
- 25 845 736 ÷ 2 = 12 922 868 + 0;
- 12 922 868 ÷ 2 = 6 461 434 + 0;
- 6 461 434 ÷ 2 = 3 230 717 + 0;
- 3 230 717 ÷ 2 = 1 615 358 + 1;
- 1 615 358 ÷ 2 = 807 679 + 0;
- 807 679 ÷ 2 = 403 839 + 1;
- 403 839 ÷ 2 = 201 919 + 1;
- 201 919 ÷ 2 = 100 959 + 1;
- 100 959 ÷ 2 = 50 479 + 1;
- 50 479 ÷ 2 = 25 239 + 1;
- 25 239 ÷ 2 = 12 619 + 1;
- 12 619 ÷ 2 = 6 309 + 1;
- 6 309 ÷ 2 = 3 154 + 1;
- 3 154 ÷ 2 = 1 577 + 0;
- 1 577 ÷ 2 = 788 + 1;
- 788 ÷ 2 = 394 + 0;
- 394 ÷ 2 = 197 + 0;
- 197 ÷ 2 = 98 + 1;
- 98 ÷ 2 = 49 + 0;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
867 239 022 216 956(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
867 239 022 216 956 (base 10) = 11 0001 0100 1011 1111 1101 0001 1101 1010 1100 0110 1111 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.