from sympy import *
x = symbols('x', real=True)
solve(Abs(2 + 36/(x - 2)) - 6)
I've already set real=True
, but it still says solving Abs(2 + 36/(x - 2)) when the argument is not real or imaginary.
However, solving Abs(36/(x - 2)) - 6
is fine.
What's the problem?