Simplifying an inequality
I ask:
var('x,y')
ineq = (x+2<y+2)
simplify(ineq)
and get:
x + 2 < y + 2
How can I get Sage to simplify this inequality to:
x < y
?
add a comment
I ask:
var('x,y')
ineq = (x+2<y+2)
simplify(ineq)
and get:
x + 2 < y + 2
How can I get Sage to simplify this inequality to:
x < y
?
You can simplify this using
solve(ineq,x)
Asked: 2016-03-13 03:27:08 -0600
Seen: 281 times
Last updated: Mar 19 '16
How to get sage to NOT calculate
Rewriting an expression in terms of other expressions or functions
Why abs(sin(pi/n)) is not simplified by sin(pi/n) when n>2
Excluding a common factor in a sum
Adding zero to an expression and avoiding simplification
How to simplify a simple expression