What are the required steps to convert base 10 decimal system
number 987 654 321 123 456 995 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;
- 987 654 321 123 456 995 ÷ 2 = 493 827 160 561 728 497 + 1;
- 493 827 160 561 728 497 ÷ 2 = 246 913 580 280 864 248 + 1;
- 246 913 580 280 864 248 ÷ 2 = 123 456 790 140 432 124 + 0;
- 123 456 790 140 432 124 ÷ 2 = 61 728 395 070 216 062 + 0;
- 61 728 395 070 216 062 ÷ 2 = 30 864 197 535 108 031 + 0;
- 30 864 197 535 108 031 ÷ 2 = 15 432 098 767 554 015 + 1;
- 15 432 098 767 554 015 ÷ 2 = 7 716 049 383 777 007 + 1;
- 7 716 049 383 777 007 ÷ 2 = 3 858 024 691 888 503 + 1;
- 3 858 024 691 888 503 ÷ 2 = 1 929 012 345 944 251 + 1;
- 1 929 012 345 944 251 ÷ 2 = 964 506 172 972 125 + 1;
- 964 506 172 972 125 ÷ 2 = 482 253 086 486 062 + 1;
- 482 253 086 486 062 ÷ 2 = 241 126 543 243 031 + 0;
- 241 126 543 243 031 ÷ 2 = 120 563 271 621 515 + 1;
- 120 563 271 621 515 ÷ 2 = 60 281 635 810 757 + 1;
- 60 281 635 810 757 ÷ 2 = 30 140 817 905 378 + 1;
- 30 140 817 905 378 ÷ 2 = 15 070 408 952 689 + 0;
- 15 070 408 952 689 ÷ 2 = 7 535 204 476 344 + 1;
- 7 535 204 476 344 ÷ 2 = 3 767 602 238 172 + 0;
- 3 767 602 238 172 ÷ 2 = 1 883 801 119 086 + 0;
- 1 883 801 119 086 ÷ 2 = 941 900 559 543 + 0;
- 941 900 559 543 ÷ 2 = 470 950 279 771 + 1;
- 470 950 279 771 ÷ 2 = 235 475 139 885 + 1;
- 235 475 139 885 ÷ 2 = 117 737 569 942 + 1;
- 117 737 569 942 ÷ 2 = 58 868 784 971 + 0;
- 58 868 784 971 ÷ 2 = 29 434 392 485 + 1;
- 29 434 392 485 ÷ 2 = 14 717 196 242 + 1;
- 14 717 196 242 ÷ 2 = 7 358 598 121 + 0;
- 7 358 598 121 ÷ 2 = 3 679 299 060 + 1;
- 3 679 299 060 ÷ 2 = 1 839 649 530 + 0;
- 1 839 649 530 ÷ 2 = 919 824 765 + 0;
- 919 824 765 ÷ 2 = 459 912 382 + 1;
- 459 912 382 ÷ 2 = 229 956 191 + 0;
- 229 956 191 ÷ 2 = 114 978 095 + 1;
- 114 978 095 ÷ 2 = 57 489 047 + 1;
- 57 489 047 ÷ 2 = 28 744 523 + 1;
- 28 744 523 ÷ 2 = 14 372 261 + 1;
- 14 372 261 ÷ 2 = 7 186 130 + 1;
- 7 186 130 ÷ 2 = 3 593 065 + 0;
- 3 593 065 ÷ 2 = 1 796 532 + 1;
- 1 796 532 ÷ 2 = 898 266 + 0;
- 898 266 ÷ 2 = 449 133 + 0;
- 449 133 ÷ 2 = 224 566 + 1;
- 224 566 ÷ 2 = 112 283 + 0;
- 112 283 ÷ 2 = 56 141 + 1;
- 56 141 ÷ 2 = 28 070 + 1;
- 28 070 ÷ 2 = 14 035 + 0;
- 14 035 ÷ 2 = 7 017 + 1;
- 7 017 ÷ 2 = 3 508 + 1;
- 3 508 ÷ 2 = 1 754 + 0;
- 1 754 ÷ 2 = 877 + 0;
- 877 ÷ 2 = 438 + 1;
- 438 ÷ 2 = 219 + 0;
- 219 ÷ 2 = 109 + 1;
- 109 ÷ 2 = 54 + 1;
- 54 ÷ 2 = 27 + 0;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 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.
987 654 321 123 456 995(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
987 654 321 123 456 995 (base 10) = 1101 1011 0100 1101 1010 0101 1111 0100 1011 0111 0001 0111 0111 1110 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.