What are the required steps to convert base 10 decimal system
number 1 465 334 179 730 426 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;
- 1 465 334 179 730 426 ÷ 2 = 732 667 089 865 213 + 0;
- 732 667 089 865 213 ÷ 2 = 366 333 544 932 606 + 1;
- 366 333 544 932 606 ÷ 2 = 183 166 772 466 303 + 0;
- 183 166 772 466 303 ÷ 2 = 91 583 386 233 151 + 1;
- 91 583 386 233 151 ÷ 2 = 45 791 693 116 575 + 1;
- 45 791 693 116 575 ÷ 2 = 22 895 846 558 287 + 1;
- 22 895 846 558 287 ÷ 2 = 11 447 923 279 143 + 1;
- 11 447 923 279 143 ÷ 2 = 5 723 961 639 571 + 1;
- 5 723 961 639 571 ÷ 2 = 2 861 980 819 785 + 1;
- 2 861 980 819 785 ÷ 2 = 1 430 990 409 892 + 1;
- 1 430 990 409 892 ÷ 2 = 715 495 204 946 + 0;
- 715 495 204 946 ÷ 2 = 357 747 602 473 + 0;
- 357 747 602 473 ÷ 2 = 178 873 801 236 + 1;
- 178 873 801 236 ÷ 2 = 89 436 900 618 + 0;
- 89 436 900 618 ÷ 2 = 44 718 450 309 + 0;
- 44 718 450 309 ÷ 2 = 22 359 225 154 + 1;
- 22 359 225 154 ÷ 2 = 11 179 612 577 + 0;
- 11 179 612 577 ÷ 2 = 5 589 806 288 + 1;
- 5 589 806 288 ÷ 2 = 2 794 903 144 + 0;
- 2 794 903 144 ÷ 2 = 1 397 451 572 + 0;
- 1 397 451 572 ÷ 2 = 698 725 786 + 0;
- 698 725 786 ÷ 2 = 349 362 893 + 0;
- 349 362 893 ÷ 2 = 174 681 446 + 1;
- 174 681 446 ÷ 2 = 87 340 723 + 0;
- 87 340 723 ÷ 2 = 43 670 361 + 1;
- 43 670 361 ÷ 2 = 21 835 180 + 1;
- 21 835 180 ÷ 2 = 10 917 590 + 0;
- 10 917 590 ÷ 2 = 5 458 795 + 0;
- 5 458 795 ÷ 2 = 2 729 397 + 1;
- 2 729 397 ÷ 2 = 1 364 698 + 1;
- 1 364 698 ÷ 2 = 682 349 + 0;
- 682 349 ÷ 2 = 341 174 + 1;
- 341 174 ÷ 2 = 170 587 + 0;
- 170 587 ÷ 2 = 85 293 + 1;
- 85 293 ÷ 2 = 42 646 + 1;
- 42 646 ÷ 2 = 21 323 + 0;
- 21 323 ÷ 2 = 10 661 + 1;
- 10 661 ÷ 2 = 5 330 + 1;
- 5 330 ÷ 2 = 2 665 + 0;
- 2 665 ÷ 2 = 1 332 + 1;
- 1 332 ÷ 2 = 666 + 0;
- 666 ÷ 2 = 333 + 0;
- 333 ÷ 2 = 166 + 1;
- 166 ÷ 2 = 83 + 0;
- 83 ÷ 2 = 41 + 1;
- 41 ÷ 2 = 20 + 1;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 5 ÷ 2 = 2 + 1;
- 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.
1 465 334 179 730 426(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 465 334 179 730 426 (base 10) = 101 0011 0100 1011 0110 1011 0011 0100 0010 1001 0011 1111 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.