How can this be?
sage: x = var('x')
sage: Q = function('Q', x)
sage: assume(x>0)
sage: assume(Q>0)
sage: bool(Q>0)
False
And even
sage: bool(abs(Q)>0)
False
Am I forgetting or neglecting something? Thank you
1 | initial version |
How can this be?
sage: x = var('x')
sage: Q = function('Q', x)
sage: assume(x>0)
sage: assume(Q>0)
sage: bool(Q>0)
False
And even
sage: bool(abs(Q)>0)
False
Am I forgetting or neglecting something? Thank you