What are the required steps to convert base 10 decimal system
number 1 100 100 100 000 901 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 100 100 100 000 901 ÷ 2 = 550 050 050 000 450 + 1;
- 550 050 050 000 450 ÷ 2 = 275 025 025 000 225 + 0;
- 275 025 025 000 225 ÷ 2 = 137 512 512 500 112 + 1;
- 137 512 512 500 112 ÷ 2 = 68 756 256 250 056 + 0;
- 68 756 256 250 056 ÷ 2 = 34 378 128 125 028 + 0;
- 34 378 128 125 028 ÷ 2 = 17 189 064 062 514 + 0;
- 17 189 064 062 514 ÷ 2 = 8 594 532 031 257 + 0;
- 8 594 532 031 257 ÷ 2 = 4 297 266 015 628 + 1;
- 4 297 266 015 628 ÷ 2 = 2 148 633 007 814 + 0;
- 2 148 633 007 814 ÷ 2 = 1 074 316 503 907 + 0;
- 1 074 316 503 907 ÷ 2 = 537 158 251 953 + 1;
- 537 158 251 953 ÷ 2 = 268 579 125 976 + 1;
- 268 579 125 976 ÷ 2 = 134 289 562 988 + 0;
- 134 289 562 988 ÷ 2 = 67 144 781 494 + 0;
- 67 144 781 494 ÷ 2 = 33 572 390 747 + 0;
- 33 572 390 747 ÷ 2 = 16 786 195 373 + 1;
- 16 786 195 373 ÷ 2 = 8 393 097 686 + 1;
- 8 393 097 686 ÷ 2 = 4 196 548 843 + 0;
- 4 196 548 843 ÷ 2 = 2 098 274 421 + 1;
- 2 098 274 421 ÷ 2 = 1 049 137 210 + 1;
- 1 049 137 210 ÷ 2 = 524 568 605 + 0;
- 524 568 605 ÷ 2 = 262 284 302 + 1;
- 262 284 302 ÷ 2 = 131 142 151 + 0;
- 131 142 151 ÷ 2 = 65 571 075 + 1;
- 65 571 075 ÷ 2 = 32 785 537 + 1;
- 32 785 537 ÷ 2 = 16 392 768 + 1;
- 16 392 768 ÷ 2 = 8 196 384 + 0;
- 8 196 384 ÷ 2 = 4 098 192 + 0;
- 4 098 192 ÷ 2 = 2 049 096 + 0;
- 2 049 096 ÷ 2 = 1 024 548 + 0;
- 1 024 548 ÷ 2 = 512 274 + 0;
- 512 274 ÷ 2 = 256 137 + 0;
- 256 137 ÷ 2 = 128 068 + 1;
- 128 068 ÷ 2 = 64 034 + 0;
- 64 034 ÷ 2 = 32 017 + 0;
- 32 017 ÷ 2 = 16 008 + 1;
- 16 008 ÷ 2 = 8 004 + 0;
- 8 004 ÷ 2 = 4 002 + 0;
- 4 002 ÷ 2 = 2 001 + 0;
- 2 001 ÷ 2 = 1 000 + 1;
- 1 000 ÷ 2 = 500 + 0;
- 500 ÷ 2 = 250 + 0;
- 250 ÷ 2 = 125 + 0;
- 125 ÷ 2 = 62 + 1;
- 62 ÷ 2 = 31 + 0;
- 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.
1 100 100 100 000 901(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 100 100 100 000 901 (base 10) = 11 1110 1000 1000 1001 0000 0011 1010 1101 1000 1100 1000 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.