Question: In PYTHON please, thank you Write the function info that accepts a polynomial (represented by a list of floats), and returns a string that include
In PYTHON please, thank you
Write the function info that accepts a polynomial (represented by a list of floats), and returns a string that include various information about the degree of the polynomial (its highest power), and if the polynomial is odd or even. A polynomial f(x) is even is f(x)=f(x) and it is odd if f(x)=f(x). To find if a polynomial is even, you could just check if its coefs of odd powers (x,x3,x5, etc. ) are all zeros; To find if a polynomial is odd, you could just check if its coefs of even powers (x0,x2,x4, etc.) are all zeros
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
