when I run the expression
solve([x>=3, x >=5, x < 8],x)
It returns
[[5 < x, x < 8], [x == 5]]
But I'm hoping that it would return
[[5 <= x, x < 8]]
How do I get my expected value?
| 1 | initial version |
when I run the expression
solve([x>=3, x >=5, x < 8],x)
It returns
[[5 < x, x < 8], [x == 5]]
But I'm hoping that it would return
[[5 <= x, x < 8]]
How do I get my expected value?
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.