Is there a way to do some operation to both sides of an equality object in sympy? For example is there a better way to do the following because it is annoying
eq1 = sym.Eq(2*x,5)
eq1 = sym.Eq(2* eq1.rhs, 2 * eq1.lhs)
I would think its like eq1 * 2 but that does not work