I have the following values:
var('r')
f = function('f')(r)
with an equation given by:
eq = sqrt(-1/(f^2*sin(r)^2))-1/sqrt(-f^2*sin(r)^2)
which, in LaTeX expression, looks like:
√−1f(r)2sin(r)2−1√−f(r)2sin(r)2
In principle, this should be equal to zero. However,
bool(eq==0)
gives me False
. I have tried with .simplify_full()
and following the suggestion in here, I have used ._sympy_().simplify()
:
eq = eq._sympy_().simplify()
bool(eq==0)
but I still get False
. Am I missing something?