What are the required steps to convert base 10 decimal system
number 434 153 765 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;
- 434 153 765 ÷ 2 = 217 076 882 + 1;
- 217 076 882 ÷ 2 = 108 538 441 + 0;
- 108 538 441 ÷ 2 = 54 269 220 + 1;
- 54 269 220 ÷ 2 = 27 134 610 + 0;
- 27 134 610 ÷ 2 = 13 567 305 + 0;
- 13 567 305 ÷ 2 = 6 783 652 + 1;
- 6 783 652 ÷ 2 = 3 391 826 + 0;
- 3 391 826 ÷ 2 = 1 695 913 + 0;
- 1 695 913 ÷ 2 = 847 956 + 1;
- 847 956 ÷ 2 = 423 978 + 0;
- 423 978 ÷ 2 = 211 989 + 0;
- 211 989 ÷ 2 = 105 994 + 1;
- 105 994 ÷ 2 = 52 997 + 0;
- 52 997 ÷ 2 = 26 498 + 1;
- 26 498 ÷ 2 = 13 249 + 0;
- 13 249 ÷ 2 = 6 624 + 1;
- 6 624 ÷ 2 = 3 312 + 0;
- 3 312 ÷ 2 = 1 656 + 0;
- 1 656 ÷ 2 = 828 + 0;
- 828 ÷ 2 = 414 + 0;
- 414 ÷ 2 = 207 + 0;
- 207 ÷ 2 = 103 + 1;
- 103 ÷ 2 = 51 + 1;
- 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.
434 153 765(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
434 153 765 (base 10) = 1 1001 1110 0000 1010 1001 0010 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.