What are the required steps to convert base 10 decimal system
number 1 080 874 906 331 120 002 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 080 874 906 331 120 002 ÷ 2 = 540 437 453 165 560 001 + 0;
- 540 437 453 165 560 001 ÷ 2 = 270 218 726 582 780 000 + 1;
- 270 218 726 582 780 000 ÷ 2 = 135 109 363 291 390 000 + 0;
- 135 109 363 291 390 000 ÷ 2 = 67 554 681 645 695 000 + 0;
- 67 554 681 645 695 000 ÷ 2 = 33 777 340 822 847 500 + 0;
- 33 777 340 822 847 500 ÷ 2 = 16 888 670 411 423 750 + 0;
- 16 888 670 411 423 750 ÷ 2 = 8 444 335 205 711 875 + 0;
- 8 444 335 205 711 875 ÷ 2 = 4 222 167 602 855 937 + 1;
- 4 222 167 602 855 937 ÷ 2 = 2 111 083 801 427 968 + 1;
- 2 111 083 801 427 968 ÷ 2 = 1 055 541 900 713 984 + 0;
- 1 055 541 900 713 984 ÷ 2 = 527 770 950 356 992 + 0;
- 527 770 950 356 992 ÷ 2 = 263 885 475 178 496 + 0;
- 263 885 475 178 496 ÷ 2 = 131 942 737 589 248 + 0;
- 131 942 737 589 248 ÷ 2 = 65 971 368 794 624 + 0;
- 65 971 368 794 624 ÷ 2 = 32 985 684 397 312 + 0;
- 32 985 684 397 312 ÷ 2 = 16 492 842 198 656 + 0;
- 16 492 842 198 656 ÷ 2 = 8 246 421 099 328 + 0;
- 8 246 421 099 328 ÷ 2 = 4 123 210 549 664 + 0;
- 4 123 210 549 664 ÷ 2 = 2 061 605 274 832 + 0;
- 2 061 605 274 832 ÷ 2 = 1 030 802 637 416 + 0;
- 1 030 802 637 416 ÷ 2 = 515 401 318 708 + 0;
- 515 401 318 708 ÷ 2 = 257 700 659 354 + 0;
- 257 700 659 354 ÷ 2 = 128 850 329 677 + 0;
- 128 850 329 677 ÷ 2 = 64 425 164 838 + 1;
- 64 425 164 838 ÷ 2 = 32 212 582 419 + 0;
- 32 212 582 419 ÷ 2 = 16 106 291 209 + 1;
- 16 106 291 209 ÷ 2 = 8 053 145 604 + 1;
- 8 053 145 604 ÷ 2 = 4 026 572 802 + 0;
- 4 026 572 802 ÷ 2 = 2 013 286 401 + 0;
- 2 013 286 401 ÷ 2 = 1 006 643 200 + 1;
- 1 006 643 200 ÷ 2 = 503 321 600 + 0;
- 503 321 600 ÷ 2 = 251 660 800 + 0;
- 251 660 800 ÷ 2 = 125 830 400 + 0;
- 125 830 400 ÷ 2 = 62 915 200 + 0;
- 62 915 200 ÷ 2 = 31 457 600 + 0;
- 31 457 600 ÷ 2 = 15 728 800 + 0;
- 15 728 800 ÷ 2 = 7 864 400 + 0;
- 7 864 400 ÷ 2 = 3 932 200 + 0;
- 3 932 200 ÷ 2 = 1 966 100 + 0;
- 1 966 100 ÷ 2 = 983 050 + 0;
- 983 050 ÷ 2 = 491 525 + 0;
- 491 525 ÷ 2 = 245 762 + 1;
- 245 762 ÷ 2 = 122 881 + 0;
- 122 881 ÷ 2 = 61 440 + 1;
- 61 440 ÷ 2 = 30 720 + 0;
- 30 720 ÷ 2 = 15 360 + 0;
- 15 360 ÷ 2 = 7 680 + 0;
- 7 680 ÷ 2 = 3 840 + 0;
- 3 840 ÷ 2 = 1 920 + 0;
- 1 920 ÷ 2 = 960 + 0;
- 960 ÷ 2 = 480 + 0;
- 480 ÷ 2 = 240 + 0;
- 240 ÷ 2 = 120 + 0;
- 120 ÷ 2 = 60 + 0;
- 60 ÷ 2 = 30 + 0;
- 30 ÷ 2 = 15 + 0;
- 15 ÷ 2 = 7 + 1;
- 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.
1 080 874 906 331 120 002(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 080 874 906 331 120 002 (base 10) = 1111 0000 0000 0000 1010 0000 0000 0010 0110 1000 0000 0000 0001 1000 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.