What are the required steps to convert base 10 decimal system
number 277 273 197 623 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;
- 277 273 197 623 ÷ 2 = 138 636 598 811 + 1;
- 138 636 598 811 ÷ 2 = 69 318 299 405 + 1;
- 69 318 299 405 ÷ 2 = 34 659 149 702 + 1;
- 34 659 149 702 ÷ 2 = 17 329 574 851 + 0;
- 17 329 574 851 ÷ 2 = 8 664 787 425 + 1;
- 8 664 787 425 ÷ 2 = 4 332 393 712 + 1;
- 4 332 393 712 ÷ 2 = 2 166 196 856 + 0;
- 2 166 196 856 ÷ 2 = 1 083 098 428 + 0;
- 1 083 098 428 ÷ 2 = 541 549 214 + 0;
- 541 549 214 ÷ 2 = 270 774 607 + 0;
- 270 774 607 ÷ 2 = 135 387 303 + 1;
- 135 387 303 ÷ 2 = 67 693 651 + 1;
- 67 693 651 ÷ 2 = 33 846 825 + 1;
- 33 846 825 ÷ 2 = 16 923 412 + 1;
- 16 923 412 ÷ 2 = 8 461 706 + 0;
- 8 461 706 ÷ 2 = 4 230 853 + 0;
- 4 230 853 ÷ 2 = 2 115 426 + 1;
- 2 115 426 ÷ 2 = 1 057 713 + 0;
- 1 057 713 ÷ 2 = 528 856 + 1;
- 528 856 ÷ 2 = 264 428 + 0;
- 264 428 ÷ 2 = 132 214 + 0;
- 132 214 ÷ 2 = 66 107 + 0;
- 66 107 ÷ 2 = 33 053 + 1;
- 33 053 ÷ 2 = 16 526 + 1;
- 16 526 ÷ 2 = 8 263 + 0;
- 8 263 ÷ 2 = 4 131 + 1;
- 4 131 ÷ 2 = 2 065 + 1;
- 2 065 ÷ 2 = 1 032 + 1;
- 1 032 ÷ 2 = 516 + 0;
- 516 ÷ 2 = 258 + 0;
- 258 ÷ 2 = 129 + 0;
- 129 ÷ 2 = 64 + 1;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 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.
277 273 197 623(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
277 273 197 623 (base 10) = 100 0000 1000 1110 1100 0101 0011 1100 0011 0111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.