Solving a simple system of inequalities
I asked:
var('x','y','z')
solve_ineq([x<y,y<z])
and got:
[[y < z, x < y]]
What should I do to get the expected inequality:
x < z
?
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 9 years ago
Seen: 653 times
Last updated: Mar 13 '16
By the way, on Sage 7.0.beta3, i got:
[[x < y, y < z, x < z]]