What are the required steps to convert base 10 decimal system
number 3 945 811 712 964 699 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;
- 3 945 811 712 964 699 ÷ 2 = 1 972 905 856 482 349 + 1;
- 1 972 905 856 482 349 ÷ 2 = 986 452 928 241 174 + 1;
- 986 452 928 241 174 ÷ 2 = 493 226 464 120 587 + 0;
- 493 226 464 120 587 ÷ 2 = 246 613 232 060 293 + 1;
- 246 613 232 060 293 ÷ 2 = 123 306 616 030 146 + 1;
- 123 306 616 030 146 ÷ 2 = 61 653 308 015 073 + 0;
- 61 653 308 015 073 ÷ 2 = 30 826 654 007 536 + 1;
- 30 826 654 007 536 ÷ 2 = 15 413 327 003 768 + 0;
- 15 413 327 003 768 ÷ 2 = 7 706 663 501 884 + 0;
- 7 706 663 501 884 ÷ 2 = 3 853 331 750 942 + 0;
- 3 853 331 750 942 ÷ 2 = 1 926 665 875 471 + 0;
- 1 926 665 875 471 ÷ 2 = 963 332 937 735 + 1;
- 963 332 937 735 ÷ 2 = 481 666 468 867 + 1;
- 481 666 468 867 ÷ 2 = 240 833 234 433 + 1;
- 240 833 234 433 ÷ 2 = 120 416 617 216 + 1;
- 120 416 617 216 ÷ 2 = 60 208 308 608 + 0;
- 60 208 308 608 ÷ 2 = 30 104 154 304 + 0;
- 30 104 154 304 ÷ 2 = 15 052 077 152 + 0;
- 15 052 077 152 ÷ 2 = 7 526 038 576 + 0;
- 7 526 038 576 ÷ 2 = 3 763 019 288 + 0;
- 3 763 019 288 ÷ 2 = 1 881 509 644 + 0;
- 1 881 509 644 ÷ 2 = 940 754 822 + 0;
- 940 754 822 ÷ 2 = 470 377 411 + 0;
- 470 377 411 ÷ 2 = 235 188 705 + 1;
- 235 188 705 ÷ 2 = 117 594 352 + 1;
- 117 594 352 ÷ 2 = 58 797 176 + 0;
- 58 797 176 ÷ 2 = 29 398 588 + 0;
- 29 398 588 ÷ 2 = 14 699 294 + 0;
- 14 699 294 ÷ 2 = 7 349 647 + 0;
- 7 349 647 ÷ 2 = 3 674 823 + 1;
- 3 674 823 ÷ 2 = 1 837 411 + 1;
- 1 837 411 ÷ 2 = 918 705 + 1;
- 918 705 ÷ 2 = 459 352 + 1;
- 459 352 ÷ 2 = 229 676 + 0;
- 229 676 ÷ 2 = 114 838 + 0;
- 114 838 ÷ 2 = 57 419 + 0;
- 57 419 ÷ 2 = 28 709 + 1;
- 28 709 ÷ 2 = 14 354 + 1;
- 14 354 ÷ 2 = 7 177 + 0;
- 7 177 ÷ 2 = 3 588 + 1;
- 3 588 ÷ 2 = 1 794 + 0;
- 1 794 ÷ 2 = 897 + 0;
- 897 ÷ 2 = 448 + 1;
- 448 ÷ 2 = 224 + 0;
- 224 ÷ 2 = 112 + 0;
- 112 ÷ 2 = 56 + 0;
- 56 ÷ 2 = 28 + 0;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 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.
3 945 811 712 964 699(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 945 811 712 964 699 (base 10) = 1110 0000 0100 1011 0001 1110 0001 1000 0000 0111 1000 0101 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.