What are the required steps to convert base 10 decimal system
number 402 800 000 000 616 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;
- 402 800 000 000 616 ÷ 2 = 201 400 000 000 308 + 0;
- 201 400 000 000 308 ÷ 2 = 100 700 000 000 154 + 0;
- 100 700 000 000 154 ÷ 2 = 50 350 000 000 077 + 0;
- 50 350 000 000 077 ÷ 2 = 25 175 000 000 038 + 1;
- 25 175 000 000 038 ÷ 2 = 12 587 500 000 019 + 0;
- 12 587 500 000 019 ÷ 2 = 6 293 750 000 009 + 1;
- 6 293 750 000 009 ÷ 2 = 3 146 875 000 004 + 1;
- 3 146 875 000 004 ÷ 2 = 1 573 437 500 002 + 0;
- 1 573 437 500 002 ÷ 2 = 786 718 750 001 + 0;
- 786 718 750 001 ÷ 2 = 393 359 375 000 + 1;
- 393 359 375 000 ÷ 2 = 196 679 687 500 + 0;
- 196 679 687 500 ÷ 2 = 98 339 843 750 + 0;
- 98 339 843 750 ÷ 2 = 49 169 921 875 + 0;
- 49 169 921 875 ÷ 2 = 24 584 960 937 + 1;
- 24 584 960 937 ÷ 2 = 12 292 480 468 + 1;
- 12 292 480 468 ÷ 2 = 6 146 240 234 + 0;
- 6 146 240 234 ÷ 2 = 3 073 120 117 + 0;
- 3 073 120 117 ÷ 2 = 1 536 560 058 + 1;
- 1 536 560 058 ÷ 2 = 768 280 029 + 0;
- 768 280 029 ÷ 2 = 384 140 014 + 1;
- 384 140 014 ÷ 2 = 192 070 007 + 0;
- 192 070 007 ÷ 2 = 96 035 003 + 1;
- 96 035 003 ÷ 2 = 48 017 501 + 1;
- 48 017 501 ÷ 2 = 24 008 750 + 1;
- 24 008 750 ÷ 2 = 12 004 375 + 0;
- 12 004 375 ÷ 2 = 6 002 187 + 1;
- 6 002 187 ÷ 2 = 3 001 093 + 1;
- 3 001 093 ÷ 2 = 1 500 546 + 1;
- 1 500 546 ÷ 2 = 750 273 + 0;
- 750 273 ÷ 2 = 375 136 + 1;
- 375 136 ÷ 2 = 187 568 + 0;
- 187 568 ÷ 2 = 93 784 + 0;
- 93 784 ÷ 2 = 46 892 + 0;
- 46 892 ÷ 2 = 23 446 + 0;
- 23 446 ÷ 2 = 11 723 + 0;
- 11 723 ÷ 2 = 5 861 + 1;
- 5 861 ÷ 2 = 2 930 + 1;
- 2 930 ÷ 2 = 1 465 + 0;
- 1 465 ÷ 2 = 732 + 1;
- 732 ÷ 2 = 366 + 0;
- 366 ÷ 2 = 183 + 0;
- 183 ÷ 2 = 91 + 1;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 5 ÷ 2 = 2 + 1;
- 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.
402 800 000 000 616(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
402 800 000 000 616 (base 10) = 1 0110 1110 0101 1000 0010 1110 1110 1010 0110 0010 0110 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.