What are the required steps to convert base 10 decimal system
number 280 920 519 590 661 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;
- 280 920 519 590 661 ÷ 2 = 140 460 259 795 330 + 1;
- 140 460 259 795 330 ÷ 2 = 70 230 129 897 665 + 0;
- 70 230 129 897 665 ÷ 2 = 35 115 064 948 832 + 1;
- 35 115 064 948 832 ÷ 2 = 17 557 532 474 416 + 0;
- 17 557 532 474 416 ÷ 2 = 8 778 766 237 208 + 0;
- 8 778 766 237 208 ÷ 2 = 4 389 383 118 604 + 0;
- 4 389 383 118 604 ÷ 2 = 2 194 691 559 302 + 0;
- 2 194 691 559 302 ÷ 2 = 1 097 345 779 651 + 0;
- 1 097 345 779 651 ÷ 2 = 548 672 889 825 + 1;
- 548 672 889 825 ÷ 2 = 274 336 444 912 + 1;
- 274 336 444 912 ÷ 2 = 137 168 222 456 + 0;
- 137 168 222 456 ÷ 2 = 68 584 111 228 + 0;
- 68 584 111 228 ÷ 2 = 34 292 055 614 + 0;
- 34 292 055 614 ÷ 2 = 17 146 027 807 + 0;
- 17 146 027 807 ÷ 2 = 8 573 013 903 + 1;
- 8 573 013 903 ÷ 2 = 4 286 506 951 + 1;
- 4 286 506 951 ÷ 2 = 2 143 253 475 + 1;
- 2 143 253 475 ÷ 2 = 1 071 626 737 + 1;
- 1 071 626 737 ÷ 2 = 535 813 368 + 1;
- 535 813 368 ÷ 2 = 267 906 684 + 0;
- 267 906 684 ÷ 2 = 133 953 342 + 0;
- 133 953 342 ÷ 2 = 66 976 671 + 0;
- 66 976 671 ÷ 2 = 33 488 335 + 1;
- 33 488 335 ÷ 2 = 16 744 167 + 1;
- 16 744 167 ÷ 2 = 8 372 083 + 1;
- 8 372 083 ÷ 2 = 4 186 041 + 1;
- 4 186 041 ÷ 2 = 2 093 020 + 1;
- 2 093 020 ÷ 2 = 1 046 510 + 0;
- 1 046 510 ÷ 2 = 523 255 + 0;
- 523 255 ÷ 2 = 261 627 + 1;
- 261 627 ÷ 2 = 130 813 + 1;
- 130 813 ÷ 2 = 65 406 + 1;
- 65 406 ÷ 2 = 32 703 + 0;
- 32 703 ÷ 2 = 16 351 + 1;
- 16 351 ÷ 2 = 8 175 + 1;
- 8 175 ÷ 2 = 4 087 + 1;
- 4 087 ÷ 2 = 2 043 + 1;
- 2 043 ÷ 2 = 1 021 + 1;
- 1 021 ÷ 2 = 510 + 1;
- 510 ÷ 2 = 255 + 0;
- 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.
280 920 519 590 661(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
280 920 519 590 661 (base 10) = 1111 1111 0111 1110 1110 0111 1100 0111 1100 0011 0000 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.