| 1 | initial version |
Symbolic and numerical do not like eachother, instead of 0.5 and 0.3, use 1/2 and 3/10 :
sage: solve( [(2*x / (4+x**2)) < 1/2 , (2*x / (x**2 + 4)) > 3/10 ], x, to_poly_serve=True )
[[(2/3) < x, x < 6, x - 2 != 0]]
| 2 | No.2 Revision |
Symbolic and numerical do not like eachother, instead of 0.5 and 0.3, use 1/2 and 3/10 :
sage: solve( [(2*x / (4+x**2)) < 1/2 , (2*x / (x**2 + 4)) > 3/10 ], x, to_poly_serve=True )
x)
[[(2/3) < x, x < 6, x - 2 != 0]]
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.