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?