What are the required steps to convert base 10 decimal system
number 856 455 060 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;
- 856 455 060 ÷ 2 = 428 227 530 + 0;
- 428 227 530 ÷ 2 = 214 113 765 + 0;
- 214 113 765 ÷ 2 = 107 056 882 + 1;
- 107 056 882 ÷ 2 = 53 528 441 + 0;
- 53 528 441 ÷ 2 = 26 764 220 + 1;
- 26 764 220 ÷ 2 = 13 382 110 + 0;
- 13 382 110 ÷ 2 = 6 691 055 + 0;
- 6 691 055 ÷ 2 = 3 345 527 + 1;
- 3 345 527 ÷ 2 = 1 672 763 + 1;
- 1 672 763 ÷ 2 = 836 381 + 1;
- 836 381 ÷ 2 = 418 190 + 1;
- 418 190 ÷ 2 = 209 095 + 0;
- 209 095 ÷ 2 = 104 547 + 1;
- 104 547 ÷ 2 = 52 273 + 1;
- 52 273 ÷ 2 = 26 136 + 1;
- 26 136 ÷ 2 = 13 068 + 0;
- 13 068 ÷ 2 = 6 534 + 0;
- 6 534 ÷ 2 = 3 267 + 0;
- 3 267 ÷ 2 = 1 633 + 1;
- 1 633 ÷ 2 = 816 + 1;
- 816 ÷ 2 = 408 + 0;
- 408 ÷ 2 = 204 + 0;
- 204 ÷ 2 = 102 + 0;
- 102 ÷ 2 = 51 + 0;
- 51 ÷ 2 = 25 + 1;
- 25 ÷ 2 = 12 + 1;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
856 455 060(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
856 455 060 (base 10) = 11 0011 0000 1100 0111 0111 1001 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.