What are the required steps to convert base 10 decimal system
number 101 001 101 101 269 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 101 101 269 ÷ 2 = 50 500 550 550 634 + 1;
- 50 500 550 550 634 ÷ 2 = 25 250 275 275 317 + 0;
- 25 250 275 275 317 ÷ 2 = 12 625 137 637 658 + 1;
- 12 625 137 637 658 ÷ 2 = 6 312 568 818 829 + 0;
- 6 312 568 818 829 ÷ 2 = 3 156 284 409 414 + 1;
- 3 156 284 409 414 ÷ 2 = 1 578 142 204 707 + 0;
- 1 578 142 204 707 ÷ 2 = 789 071 102 353 + 1;
- 789 071 102 353 ÷ 2 = 394 535 551 176 + 1;
- 394 535 551 176 ÷ 2 = 197 267 775 588 + 0;
- 197 267 775 588 ÷ 2 = 98 633 887 794 + 0;
- 98 633 887 794 ÷ 2 = 49 316 943 897 + 0;
- 49 316 943 897 ÷ 2 = 24 658 471 948 + 1;
- 24 658 471 948 ÷ 2 = 12 329 235 974 + 0;
- 12 329 235 974 ÷ 2 = 6 164 617 987 + 0;
- 6 164 617 987 ÷ 2 = 3 082 308 993 + 1;
- 3 082 308 993 ÷ 2 = 1 541 154 496 + 1;
- 1 541 154 496 ÷ 2 = 770 577 248 + 0;
- 770 577 248 ÷ 2 = 385 288 624 + 0;
- 385 288 624 ÷ 2 = 192 644 312 + 0;
- 192 644 312 ÷ 2 = 96 322 156 + 0;
- 96 322 156 ÷ 2 = 48 161 078 + 0;
- 48 161 078 ÷ 2 = 24 080 539 + 0;
- 24 080 539 ÷ 2 = 12 040 269 + 1;
- 12 040 269 ÷ 2 = 6 020 134 + 1;
- 6 020 134 ÷ 2 = 3 010 067 + 0;
- 3 010 067 ÷ 2 = 1 505 033 + 1;
- 1 505 033 ÷ 2 = 752 516 + 1;
- 752 516 ÷ 2 = 376 258 + 0;
- 376 258 ÷ 2 = 188 129 + 0;
- 188 129 ÷ 2 = 94 064 + 1;
- 94 064 ÷ 2 = 47 032 + 0;
- 47 032 ÷ 2 = 23 516 + 0;
- 23 516 ÷ 2 = 11 758 + 0;
- 11 758 ÷ 2 = 5 879 + 0;
- 5 879 ÷ 2 = 2 939 + 1;
- 2 939 ÷ 2 = 1 469 + 1;
- 1 469 ÷ 2 = 734 + 1;
- 734 ÷ 2 = 367 + 0;
- 367 ÷ 2 = 183 + 1;
- 183 ÷ 2 = 91 + 1;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 22 ÷ 2 = 11 + 0;
- 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 101 101 269(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
101 001 101 101 269 (base 10) = 101 1011 1101 1100 0010 0110 1100 0000 1100 1000 1101 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.