What are the required steps to convert base 10 decimal system
number 9 284 111 646 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;
- 9 284 111 646 ÷ 2 = 4 642 055 823 + 0;
- 4 642 055 823 ÷ 2 = 2 321 027 911 + 1;
- 2 321 027 911 ÷ 2 = 1 160 513 955 + 1;
- 1 160 513 955 ÷ 2 = 580 256 977 + 1;
- 580 256 977 ÷ 2 = 290 128 488 + 1;
- 290 128 488 ÷ 2 = 145 064 244 + 0;
- 145 064 244 ÷ 2 = 72 532 122 + 0;
- 72 532 122 ÷ 2 = 36 266 061 + 0;
- 36 266 061 ÷ 2 = 18 133 030 + 1;
- 18 133 030 ÷ 2 = 9 066 515 + 0;
- 9 066 515 ÷ 2 = 4 533 257 + 1;
- 4 533 257 ÷ 2 = 2 266 628 + 1;
- 2 266 628 ÷ 2 = 1 133 314 + 0;
- 1 133 314 ÷ 2 = 566 657 + 0;
- 566 657 ÷ 2 = 283 328 + 1;
- 283 328 ÷ 2 = 141 664 + 0;
- 141 664 ÷ 2 = 70 832 + 0;
- 70 832 ÷ 2 = 35 416 + 0;
- 35 416 ÷ 2 = 17 708 + 0;
- 17 708 ÷ 2 = 8 854 + 0;
- 8 854 ÷ 2 = 4 427 + 0;
- 4 427 ÷ 2 = 2 213 + 1;
- 2 213 ÷ 2 = 1 106 + 1;
- 1 106 ÷ 2 = 553 + 0;
- 553 ÷ 2 = 276 + 1;
- 276 ÷ 2 = 138 + 0;
- 138 ÷ 2 = 69 + 0;
- 69 ÷ 2 = 34 + 1;
- 34 ÷ 2 = 17 + 0;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
9 284 111 646(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
9 284 111 646 (base 10) = 10 0010 1001 0110 0000 0100 1101 0001 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.