Let P(x) be a polynomial of degree n
and A = [an , an-1,.... ]
Write a function integral(A, X1, X2) that takes 3 inputs A, X0
and X1
A as stated above
X1 and X2 be any real number, where X1 is the lower limit of the
integral and X2 is the upper limit of the integral. Please write
this code in Python.
DONT use any inbuilt function, instead use looping in Python to
solve the question. You should...