Suppose I have this expression:
a(t1+t2+t3−1)b
This can be simplified to 0 if we assume t1+t2+t3=1.
How can I accomplish this in Sage? I've tried:
var('t1', 't2', 't3', 'a', 'b')
expr1 = ((t1 + t2 + t3 - 1)*a)/b
expr1.full_simplify()
assume(t1 + t2 + t3 == 1)
expr1.full_simplify()
I expected the second call tofull_simplify()
to return 0 but it returned the same result as the first call, which is at1+at2+at3−ab