What are the required steps to convert base 10 decimal system
number 101 001 100 266 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;
- 101 001 100 266 ÷ 2 = 50 500 550 133 + 0;
- 50 500 550 133 ÷ 2 = 25 250 275 066 + 1;
- 25 250 275 066 ÷ 2 = 12 625 137 533 + 0;
- 12 625 137 533 ÷ 2 = 6 312 568 766 + 1;
- 6 312 568 766 ÷ 2 = 3 156 284 383 + 0;
- 3 156 284 383 ÷ 2 = 1 578 142 191 + 1;
- 1 578 142 191 ÷ 2 = 789 071 095 + 1;
- 789 071 095 ÷ 2 = 394 535 547 + 1;
- 394 535 547 ÷ 2 = 197 267 773 + 1;
- 197 267 773 ÷ 2 = 98 633 886 + 1;
- 98 633 886 ÷ 2 = 49 316 943 + 0;
- 49 316 943 ÷ 2 = 24 658 471 + 1;
- 24 658 471 ÷ 2 = 12 329 235 + 1;
- 12 329 235 ÷ 2 = 6 164 617 + 1;
- 6 164 617 ÷ 2 = 3 082 308 + 1;
- 3 082 308 ÷ 2 = 1 541 154 + 0;
- 1 541 154 ÷ 2 = 770 577 + 0;
- 770 577 ÷ 2 = 385 288 + 1;
- 385 288 ÷ 2 = 192 644 + 0;
- 192 644 ÷ 2 = 96 322 + 0;
- 96 322 ÷ 2 = 48 161 + 0;
- 48 161 ÷ 2 = 24 080 + 1;
- 24 080 ÷ 2 = 12 040 + 0;
- 12 040 ÷ 2 = 6 020 + 0;
- 6 020 ÷ 2 = 3 010 + 0;
- 3 010 ÷ 2 = 1 505 + 0;
- 1 505 ÷ 2 = 752 + 1;
- 752 ÷ 2 = 376 + 0;
- 376 ÷ 2 = 188 + 0;
- 188 ÷ 2 = 94 + 0;
- 94 ÷ 2 = 47 + 0;
- 47 ÷ 2 = 23 + 1;
- 23 ÷ 2 = 11 + 1;
- 11 ÷ 2 = 5 + 1;
- 5 ÷ 2 = 2 + 1;
- 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.
101 001 100 266(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
101 001 100 266 (base 10) = 1 0111 1000 0100 0010 0010 0111 1011 1110 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.