Bianry to polynomial conversion

  • Context: Undergrad 
  • Thread starter Thread starter Rubik
  • Start date Start date
  • Tags Tags
    Polynomial
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 10K views
Rubik
Messages
95
Reaction score
0
How do you convert binary into polynomial form? I understand hexadecial conversion so {4e} = 01001000 now how do I go about changing that into a polynomial?
 
Mathematics news on Phys.org
When you're talking about polynomials, you're referring to polynomials over GF(2)? If so, isn't it just a matter of assigning each bit as a coefficient of a power of x (or whatever variable)? For instance,
[tex]D_{16} = 1101_2 = x^3 + x^2 + 1[/tex]
?
(Assuming the binary number was written MS bit-first.)
 
Rubik said:
How do you convert binary into polynomial form? I understand hexadecial conversion so {4e} = 01001000 now how do I go about changing that into a polynomial?
Numbers are NOT polynomials so you don't- not without saying exactly how you are associating each number with a specific polynomial as eumyang says.
 
Are you talking about binary representations of floating-points?