What are the required steps to convert base 10 decimal system
number 2 599 210 498 948 968 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 599 210 498 948 968 ÷ 2 = 1 299 605 249 474 484 + 0;
- 1 299 605 249 474 484 ÷ 2 = 649 802 624 737 242 + 0;
- 649 802 624 737 242 ÷ 2 = 324 901 312 368 621 + 0;
- 324 901 312 368 621 ÷ 2 = 162 450 656 184 310 + 1;
- 162 450 656 184 310 ÷ 2 = 81 225 328 092 155 + 0;
- 81 225 328 092 155 ÷ 2 = 40 612 664 046 077 + 1;
- 40 612 664 046 077 ÷ 2 = 20 306 332 023 038 + 1;
- 20 306 332 023 038 ÷ 2 = 10 153 166 011 519 + 0;
- 10 153 166 011 519 ÷ 2 = 5 076 583 005 759 + 1;
- 5 076 583 005 759 ÷ 2 = 2 538 291 502 879 + 1;
- 2 538 291 502 879 ÷ 2 = 1 269 145 751 439 + 1;
- 1 269 145 751 439 ÷ 2 = 634 572 875 719 + 1;
- 634 572 875 719 ÷ 2 = 317 286 437 859 + 1;
- 317 286 437 859 ÷ 2 = 158 643 218 929 + 1;
- 158 643 218 929 ÷ 2 = 79 321 609 464 + 1;
- 79 321 609 464 ÷ 2 = 39 660 804 732 + 0;
- 39 660 804 732 ÷ 2 = 19 830 402 366 + 0;
- 19 830 402 366 ÷ 2 = 9 915 201 183 + 0;
- 9 915 201 183 ÷ 2 = 4 957 600 591 + 1;
- 4 957 600 591 ÷ 2 = 2 478 800 295 + 1;
- 2 478 800 295 ÷ 2 = 1 239 400 147 + 1;
- 1 239 400 147 ÷ 2 = 619 700 073 + 1;
- 619 700 073 ÷ 2 = 309 850 036 + 1;
- 309 850 036 ÷ 2 = 154 925 018 + 0;
- 154 925 018 ÷ 2 = 77 462 509 + 0;
- 77 462 509 ÷ 2 = 38 731 254 + 1;
- 38 731 254 ÷ 2 = 19 365 627 + 0;
- 19 365 627 ÷ 2 = 9 682 813 + 1;
- 9 682 813 ÷ 2 = 4 841 406 + 1;
- 4 841 406 ÷ 2 = 2 420 703 + 0;
- 2 420 703 ÷ 2 = 1 210 351 + 1;
- 1 210 351 ÷ 2 = 605 175 + 1;
- 605 175 ÷ 2 = 302 587 + 1;
- 302 587 ÷ 2 = 151 293 + 1;
- 151 293 ÷ 2 = 75 646 + 1;
- 75 646 ÷ 2 = 37 823 + 0;
- 37 823 ÷ 2 = 18 911 + 1;
- 18 911 ÷ 2 = 9 455 + 1;
- 9 455 ÷ 2 = 4 727 + 1;
- 4 727 ÷ 2 = 2 363 + 1;
- 2 363 ÷ 2 = 1 181 + 1;
- 1 181 ÷ 2 = 590 + 1;
- 590 ÷ 2 = 295 + 0;
- 295 ÷ 2 = 147 + 1;
- 147 ÷ 2 = 73 + 1;
- 73 ÷ 2 = 36 + 1;
- 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.
2 599 210 498 948 968(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 599 210 498 948 968 (base 10) = 1001 0011 1011 1111 0111 1101 1010 0111 1100 0111 1111 0110 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.