Question: Why the if statement does not work?

I have a circle equation: F: = x^2+y^2 = 1.
I need to check: x^2+y^2 <= 1.
I tried to get this expression from F like this: lhs(F) <= rhs (F).
The content matches what I need but get: Error, cannot determine if this expression is true or false: x^2+y^2 <= 1.
When I specify just the if x^2+y^2 <= 1 then everything works fine. What am I doing wrong?

Please Wait...