answersLogoWhite

0

All you have to do is think of each x in the polynomial as a power of 10.

Therefore x is actually 10

x^2 = 100

x^3 = 1000

and so on....

So here is an example.

Polynomial given: x^8 + x^6 + x^3 + x + 1

In binary form it would be - 101001011

So for each x^(of whatever) if it exists then put a one in that location if not it is zero. At least this is the easy way I think about doing it.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

How you convert 2011 binary form and hexadecimal form?

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


Convert a decimal number 111 to its binary form?

111 = 1101111


What device convert a signal from binary or analog form into a signal of another form?

Transmission Media


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

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


How do you convert image to binary format?

To convert image to binary, you just have to convert image to binary. Hope this helps.


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 the main advantage of binary coded decimal?

Binary coded decimal (BCD) is easier to convert between displayed or printed form than is pure binary.


Uses of logic gates in computers?

They convert the command given by us in the form of binary


Convert 186 decimal numbers to its binary equivalent?

Convert 189 to binary number


How do you convert binary to excess 3 code?

To convert a binary number to Excess-3 code, first, convert the binary number to its decimal equivalent. Then, add 3 to the decimal value. Finally, convert the resulting decimal number back to binary. For instance, to convert the binary number 1010 (which is 10 in decimal), you would calculate 10 + 3 = 13, and then convert 13 back to binary, resulting in 1101 in Excess-3 code.


How do you convert 47.5 into binary?

To convert 47.5 into binary, first convert the integer part (47) to binary. 47 in binary is 101111. For the fractional part (0.5), multiply by 2, resulting in 1.0, which indicates that the binary representation of 0.5 is .1. Combining both parts, 47.5 in binary is 101111.1.


How do you subtract 2 binary numbers?

An easy way is to convert them to decimal, subtract, then convert the answer back to binary.