answersLogoWhite

0

To convert any number from one base to another base, iteratively divide by the second base, using the rules of arithmetic for the first base, and write down the remainders in reverse order, until the quotient is zero. In this example, converting 39610 into 1100011002, the process is as follows...

396 / 2 = 198 remainder 0
198 / 2 = 099 remainder 0 (Keeping the leading zeros to align the columns.)
099 / 2 = 049 remainder 1
049 / 2 = 024 remainder 1
024 / 2 = 012 remainder 0
012 / 2 = 006 remainder 0
006 / 2 = 003 remainder 0
003 / 2 = 001 remainder 1
001 / 2 = 000 remainder 1 (Stopping because the quotient is now zero.)

Look at the remainders above in reverse order, and you will see 110001100.

In mathematical form, it is far more complex. You need to solve for the coefficients of a polynomial equation of variable degree, in this case...

A28 + B27 + C26 + D25 +E24 + F23 +G22 + H21 +I20 = 396

... limiting the values of the coefficients to the valid integers in the base, 0 and 1, and then writing the coefficients in a string, ABCDEFGHI, giving 110001100.

The diophantine solution of this degree of polynomial equation seems very hard, by any other method than iteration. If someone has a better method, other than the first method stated above, please feel free to enhance this answer.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

To which numbering system can the binary number 1101100100111100 be easily converted?

its easy to convert a given binary number into haxadecimal form.


Convert a decimal number 111 to its binary form?

111 = 1101111


How you convert 2011 binary form and hexadecimal form?

The answer depends on what form you wish to convert binary and hex 2011 to.


How do you convert an integer into binary form and count no of 1s and 0s in the binary form?

To convert an integer into binary form, you can repeatedly divide the number by 2 and record the remainders. The binary representation is obtained by reading the remainders in reverse order. Once you have the binary string, you can count the number of '1's and '0's using string methods, such as count('1') and count('0'). For example, in Python, you can use bin(num)[2:] to get the binary form and then count the digits.


What is 10 in binary?

The number ten (10 in decimal format) is 1010 in binary form. The binary number 10 is 2 in decimal form.


What is the number 11 in the binary system?

11 in binary form: 1011 11 is binary form of 3


What is the binary number 11101100 in decimal form?

The binary number 11101100 = 236


How can i Convert 487 from hexadecimal to binary?

1. represent every individual digit of given hexadecimal in binary form like this 4---------> 0100 8---------> 1000 7---------> 0111 2. combine the individual binary digits in order to get the binary of given hexadecimal number 487 ------------> 0100 1000 0111 ( required binary number )


How is ten written in binary form?

1010 is the number 10 represented in binary form.


Number 18 in binary form?

Binary form of 18 is "10010"


How to convert binary number to its equivalent decimal number answer in simple form?

Each binary digit represents 2 times that of the digit to its right. So for example: 10b = 2d 100b = 4d 1010b = 8d + 2d = 10d


Which binary number is equal to the decimal number 81?

In binary form it is 1010001.