What are the required steps to convert base 10 decimal system
number 19 004 348 000 128 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;
- 19 004 348 000 128 ÷ 2 = 9 502 174 000 064 + 0;
- 9 502 174 000 064 ÷ 2 = 4 751 087 000 032 + 0;
- 4 751 087 000 032 ÷ 2 = 2 375 543 500 016 + 0;
- 2 375 543 500 016 ÷ 2 = 1 187 771 750 008 + 0;
- 1 187 771 750 008 ÷ 2 = 593 885 875 004 + 0;
- 593 885 875 004 ÷ 2 = 296 942 937 502 + 0;
- 296 942 937 502 ÷ 2 = 148 471 468 751 + 0;
- 148 471 468 751 ÷ 2 = 74 235 734 375 + 1;
- 74 235 734 375 ÷ 2 = 37 117 867 187 + 1;
- 37 117 867 187 ÷ 2 = 18 558 933 593 + 1;
- 18 558 933 593 ÷ 2 = 9 279 466 796 + 1;
- 9 279 466 796 ÷ 2 = 4 639 733 398 + 0;
- 4 639 733 398 ÷ 2 = 2 319 866 699 + 0;
- 2 319 866 699 ÷ 2 = 1 159 933 349 + 1;
- 1 159 933 349 ÷ 2 = 579 966 674 + 1;
- 579 966 674 ÷ 2 = 289 983 337 + 0;
- 289 983 337 ÷ 2 = 144 991 668 + 1;
- 144 991 668 ÷ 2 = 72 495 834 + 0;
- 72 495 834 ÷ 2 = 36 247 917 + 0;
- 36 247 917 ÷ 2 = 18 123 958 + 1;
- 18 123 958 ÷ 2 = 9 061 979 + 0;
- 9 061 979 ÷ 2 = 4 530 989 + 1;
- 4 530 989 ÷ 2 = 2 265 494 + 1;
- 2 265 494 ÷ 2 = 1 132 747 + 0;
- 1 132 747 ÷ 2 = 566 373 + 1;
- 566 373 ÷ 2 = 283 186 + 1;
- 283 186 ÷ 2 = 141 593 + 0;
- 141 593 ÷ 2 = 70 796 + 1;
- 70 796 ÷ 2 = 35 398 + 0;
- 35 398 ÷ 2 = 17 699 + 0;
- 17 699 ÷ 2 = 8 849 + 1;
- 8 849 ÷ 2 = 4 424 + 1;
- 4 424 ÷ 2 = 2 212 + 0;
- 2 212 ÷ 2 = 1 106 + 0;
- 1 106 ÷ 2 = 553 + 0;
- 553 ÷ 2 = 276 + 1;
- 276 ÷ 2 = 138 + 0;
- 138 ÷ 2 = 69 + 0;
- 69 ÷ 2 = 34 + 1;
- 34 ÷ 2 = 17 + 0;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 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.
19 004 348 000 128(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
19 004 348 000 128 (base 10) = 1 0001 0100 1000 1100 1011 0110 1001 0110 0111 1000 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.