What are the required steps to convert base 10 decimal system
number 11 010 111 010 110 117 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;
- 11 010 111 010 110 117 ÷ 2 = 5 505 055 505 055 058 + 1;
- 5 505 055 505 055 058 ÷ 2 = 2 752 527 752 527 529 + 0;
- 2 752 527 752 527 529 ÷ 2 = 1 376 263 876 263 764 + 1;
- 1 376 263 876 263 764 ÷ 2 = 688 131 938 131 882 + 0;
- 688 131 938 131 882 ÷ 2 = 344 065 969 065 941 + 0;
- 344 065 969 065 941 ÷ 2 = 172 032 984 532 970 + 1;
- 172 032 984 532 970 ÷ 2 = 86 016 492 266 485 + 0;
- 86 016 492 266 485 ÷ 2 = 43 008 246 133 242 + 1;
- 43 008 246 133 242 ÷ 2 = 21 504 123 066 621 + 0;
- 21 504 123 066 621 ÷ 2 = 10 752 061 533 310 + 1;
- 10 752 061 533 310 ÷ 2 = 5 376 030 766 655 + 0;
- 5 376 030 766 655 ÷ 2 = 2 688 015 383 327 + 1;
- 2 688 015 383 327 ÷ 2 = 1 344 007 691 663 + 1;
- 1 344 007 691 663 ÷ 2 = 672 003 845 831 + 1;
- 672 003 845 831 ÷ 2 = 336 001 922 915 + 1;
- 336 001 922 915 ÷ 2 = 168 000 961 457 + 1;
- 168 000 961 457 ÷ 2 = 84 000 480 728 + 1;
- 84 000 480 728 ÷ 2 = 42 000 240 364 + 0;
- 42 000 240 364 ÷ 2 = 21 000 120 182 + 0;
- 21 000 120 182 ÷ 2 = 10 500 060 091 + 0;
- 10 500 060 091 ÷ 2 = 5 250 030 045 + 1;
- 5 250 030 045 ÷ 2 = 2 625 015 022 + 1;
- 2 625 015 022 ÷ 2 = 1 312 507 511 + 0;
- 1 312 507 511 ÷ 2 = 656 253 755 + 1;
- 656 253 755 ÷ 2 = 328 126 877 + 1;
- 328 126 877 ÷ 2 = 164 063 438 + 1;
- 164 063 438 ÷ 2 = 82 031 719 + 0;
- 82 031 719 ÷ 2 = 41 015 859 + 1;
- 41 015 859 ÷ 2 = 20 507 929 + 1;
- 20 507 929 ÷ 2 = 10 253 964 + 1;
- 10 253 964 ÷ 2 = 5 126 982 + 0;
- 5 126 982 ÷ 2 = 2 563 491 + 0;
- 2 563 491 ÷ 2 = 1 281 745 + 1;
- 1 281 745 ÷ 2 = 640 872 + 1;
- 640 872 ÷ 2 = 320 436 + 0;
- 320 436 ÷ 2 = 160 218 + 0;
- 160 218 ÷ 2 = 80 109 + 0;
- 80 109 ÷ 2 = 40 054 + 1;
- 40 054 ÷ 2 = 20 027 + 0;
- 20 027 ÷ 2 = 10 013 + 1;
- 10 013 ÷ 2 = 5 006 + 1;
- 5 006 ÷ 2 = 2 503 + 0;
- 2 503 ÷ 2 = 1 251 + 1;
- 1 251 ÷ 2 = 625 + 1;
- 625 ÷ 2 = 312 + 1;
- 312 ÷ 2 = 156 + 0;
- 156 ÷ 2 = 78 + 0;
- 78 ÷ 2 = 39 + 0;
- 39 ÷ 2 = 19 + 1;
- 19 ÷ 2 = 9 + 1;
- 9 ÷ 2 = 4 + 1;
- 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.
11 010 111 010 110 117(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 010 111 010 110 117 (base 10) = 10 0111 0001 1101 1010 0011 0011 1011 1011 0001 1111 1010 1010 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.