First time here? Check out the FAQ!
asked 9 years ago
I ask:
var("x y") assume(x,'integer') assume(y,'integer') print (x>y)==(y<x) print (x>y)==(x-y>0)
and get:
True False
So Sage recognizes the equivalence in the first pair but not in the second pair. Is there a way to handle this?