I have two functions created with sympy's lamdify
a = sympy.lambdify((x, y), K / (2 * math.pi) * sympy.cos(theta) / r)
b = sympy.lambdify((x, y), -G / (2 * math.pi) * theta)
How can I create a new function that is the addition of these two functions?
I tried c = a + b
but I got
TypeError: unsupported operand type(s) for +: 'function' and 'function'