Question
class Polynomial(): def __init__(self, coeff, deg): Constructor for the Polynomial class Parameters ---------- coeff : list of ints or floats each element of the
class Polynomial(): def __init__(self, coeff, deg): """ Constructor for the Polynomial class Parameters ---------- coeff : list of ints or floats each element of the list is a coefficient going in increasing order ex: [1, 2, 3] -> 1 + 2x^1 + 3x^2 deg : integer
""" def __str__(self): """ Method that creates the string representation of the polynomial. ex: print(Polynomial([1, 2, 3], 2)) -> 1 + 2 * x ^ 1 + 3 * x ^ 2 Returns ------- string representation of the polynomial
""" def evaluate(self, value): """ Allows the user to compute the value of the polynomial at the inputted value ex: p = Polynomial([1, 2, 3], 2) p.evaluate(2) would return 17 1 + 2 * 2 + 3 * 2^2 Parameters ---------- value : float a value that we want to evaluate the polynomial at
Returns ------- float
""" def __add__(self, other): """ Overloaded addition operator. Allows us to type p1 + p2 where p1 and p2 are Polynomial instances Parameters ---------- other : another polynomial
Returns ------- a polynomial that is the sum of self and other
""" def __sub__(self, other): """ Overloaded subtraction operator. Allows us to type p1 - p2 where p1 and p2 are Polynomial instances Parameters ---------- other : another polynomial
Returns ------- a polynomial that is the difference of self minus other
""" def __mul__(self, other): """ Overloaded multiplication operator. Allows us to type p1 * p2 where p1 and p2 are Polynomial instances Parameters ---------- other : another polynomial
Returns ------- a polynomial that is the product of self and other
""" Follow the parameters to write the code for the class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started