What are the required steps to convert base 10 decimal system
number 911 673 011 371 999 804 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;
- 911 673 011 371 999 804 ÷ 2 = 455 836 505 685 999 902 + 0;
- 455 836 505 685 999 902 ÷ 2 = 227 918 252 842 999 951 + 0;
- 227 918 252 842 999 951 ÷ 2 = 113 959 126 421 499 975 + 1;
- 113 959 126 421 499 975 ÷ 2 = 56 979 563 210 749 987 + 1;
- 56 979 563 210 749 987 ÷ 2 = 28 489 781 605 374 993 + 1;
- 28 489 781 605 374 993 ÷ 2 = 14 244 890 802 687 496 + 1;
- 14 244 890 802 687 496 ÷ 2 = 7 122 445 401 343 748 + 0;
- 7 122 445 401 343 748 ÷ 2 = 3 561 222 700 671 874 + 0;
- 3 561 222 700 671 874 ÷ 2 = 1 780 611 350 335 937 + 0;
- 1 780 611 350 335 937 ÷ 2 = 890 305 675 167 968 + 1;
- 890 305 675 167 968 ÷ 2 = 445 152 837 583 984 + 0;
- 445 152 837 583 984 ÷ 2 = 222 576 418 791 992 + 0;
- 222 576 418 791 992 ÷ 2 = 111 288 209 395 996 + 0;
- 111 288 209 395 996 ÷ 2 = 55 644 104 697 998 + 0;
- 55 644 104 697 998 ÷ 2 = 27 822 052 348 999 + 0;
- 27 822 052 348 999 ÷ 2 = 13 911 026 174 499 + 1;
- 13 911 026 174 499 ÷ 2 = 6 955 513 087 249 + 1;
- 6 955 513 087 249 ÷ 2 = 3 477 756 543 624 + 1;
- 3 477 756 543 624 ÷ 2 = 1 738 878 271 812 + 0;
- 1 738 878 271 812 ÷ 2 = 869 439 135 906 + 0;
- 869 439 135 906 ÷ 2 = 434 719 567 953 + 0;
- 434 719 567 953 ÷ 2 = 217 359 783 976 + 1;
- 217 359 783 976 ÷ 2 = 108 679 891 988 + 0;
- 108 679 891 988 ÷ 2 = 54 339 945 994 + 0;
- 54 339 945 994 ÷ 2 = 27 169 972 997 + 0;
- 27 169 972 997 ÷ 2 = 13 584 986 498 + 1;
- 13 584 986 498 ÷ 2 = 6 792 493 249 + 0;
- 6 792 493 249 ÷ 2 = 3 396 246 624 + 1;
- 3 396 246 624 ÷ 2 = 1 698 123 312 + 0;
- 1 698 123 312 ÷ 2 = 849 061 656 + 0;
- 849 061 656 ÷ 2 = 424 530 828 + 0;
- 424 530 828 ÷ 2 = 212 265 414 + 0;
- 212 265 414 ÷ 2 = 106 132 707 + 0;
- 106 132 707 ÷ 2 = 53 066 353 + 1;
- 53 066 353 ÷ 2 = 26 533 176 + 1;
- 26 533 176 ÷ 2 = 13 266 588 + 0;
- 13 266 588 ÷ 2 = 6 633 294 + 0;
- 6 633 294 ÷ 2 = 3 316 647 + 0;
- 3 316 647 ÷ 2 = 1 658 323 + 1;
- 1 658 323 ÷ 2 = 829 161 + 1;
- 829 161 ÷ 2 = 414 580 + 1;
- 414 580 ÷ 2 = 207 290 + 0;
- 207 290 ÷ 2 = 103 645 + 0;
- 103 645 ÷ 2 = 51 822 + 1;
- 51 822 ÷ 2 = 25 911 + 0;
- 25 911 ÷ 2 = 12 955 + 1;
- 12 955 ÷ 2 = 6 477 + 1;
- 6 477 ÷ 2 = 3 238 + 1;
- 3 238 ÷ 2 = 1 619 + 0;
- 1 619 ÷ 2 = 809 + 1;
- 809 ÷ 2 = 404 + 1;
- 404 ÷ 2 = 202 + 0;
- 202 ÷ 2 = 101 + 0;
- 101 ÷ 2 = 50 + 1;
- 50 ÷ 2 = 25 + 0;
- 25 ÷ 2 = 12 + 1;
- 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.
911 673 011 371 999 804(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
911 673 011 371 999 804 (base 10) = 1100 1010 0110 1110 1001 1100 0110 0000 1010 0010 0011 1000 0010 0011 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.