xnum = np.linspace(-5, 5, 1000)
a = -3
n = 0
d = (((x^2) / (10))+(np.sin(2*x) / (2)))
dfs = ta.derivatives(d, x, a, n)
ta.plotter(xnum, ta.taylor(xnum, a, dfs), d, a)
I am getting the error:
"TypeError: unsupported operand type(s) for /: 'Not' and 'int'" on my 6th line?