| 1 | initial version |
It is a good thing, that bool(x^2>0) evaluates to false. Just plug in the real value 0.
However in version 6.4 of sage
bool(x*x>=0)
evaluates to true.
| 2 | No.2 Revision |
It is a good thing, that bool(x^2>0) evaluates to false. Just plug in the real value 0.
However in version 6.4 of sage
sage: assume(x,'real')
sage: bool(x*x>=0)
evaluates to true.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.