What are the required steps to convert base 10 decimal system
number 140 729 869 356 435 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;
- 140 729 869 356 435 ÷ 2 = 70 364 934 678 217 + 1;
- 70 364 934 678 217 ÷ 2 = 35 182 467 339 108 + 1;
- 35 182 467 339 108 ÷ 2 = 17 591 233 669 554 + 0;
- 17 591 233 669 554 ÷ 2 = 8 795 616 834 777 + 0;
- 8 795 616 834 777 ÷ 2 = 4 397 808 417 388 + 1;
- 4 397 808 417 388 ÷ 2 = 2 198 904 208 694 + 0;
- 2 198 904 208 694 ÷ 2 = 1 099 452 104 347 + 0;
- 1 099 452 104 347 ÷ 2 = 549 726 052 173 + 1;
- 549 726 052 173 ÷ 2 = 274 863 026 086 + 1;
- 274 863 026 086 ÷ 2 = 137 431 513 043 + 0;
- 137 431 513 043 ÷ 2 = 68 715 756 521 + 1;
- 68 715 756 521 ÷ 2 = 34 357 878 260 + 1;
- 34 357 878 260 ÷ 2 = 17 178 939 130 + 0;
- 17 178 939 130 ÷ 2 = 8 589 469 565 + 0;
- 8 589 469 565 ÷ 2 = 4 294 734 782 + 1;
- 4 294 734 782 ÷ 2 = 2 147 367 391 + 0;
- 2 147 367 391 ÷ 2 = 1 073 683 695 + 1;
- 1 073 683 695 ÷ 2 = 536 841 847 + 1;
- 536 841 847 ÷ 2 = 268 420 923 + 1;
- 268 420 923 ÷ 2 = 134 210 461 + 1;
- 134 210 461 ÷ 2 = 67 105 230 + 1;
- 67 105 230 ÷ 2 = 33 552 615 + 0;
- 33 552 615 ÷ 2 = 16 776 307 + 1;
- 16 776 307 ÷ 2 = 8 388 153 + 1;
- 8 388 153 ÷ 2 = 4 194 076 + 1;
- 4 194 076 ÷ 2 = 2 097 038 + 0;
- 2 097 038 ÷ 2 = 1 048 519 + 0;
- 1 048 519 ÷ 2 = 524 259 + 1;
- 524 259 ÷ 2 = 262 129 + 1;
- 262 129 ÷ 2 = 131 064 + 1;
- 131 064 ÷ 2 = 65 532 + 0;
- 65 532 ÷ 2 = 32 766 + 0;
- 32 766 ÷ 2 = 16 383 + 0;
- 16 383 ÷ 2 = 8 191 + 1;
- 8 191 ÷ 2 = 4 095 + 1;
- 4 095 ÷ 2 = 2 047 + 1;
- 2 047 ÷ 2 = 1 023 + 1;
- 1 023 ÷ 2 = 511 + 1;
- 511 ÷ 2 = 255 + 1;
- 255 ÷ 2 = 127 + 1;
- 127 ÷ 2 = 63 + 1;
- 63 ÷ 2 = 31 + 1;
- 31 ÷ 2 = 15 + 1;
- 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.
140 729 869 356 435(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
140 729 869 356 435 (base 10) = 111 1111 1111 1110 0011 1001 1101 1111 0100 1101 1001 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.