Subtract from Sides
eq = (x -3 == 17*y + 9);
lhs = eq.left -9;
rhs = eq.right - 9;
eq2 = (lhs == rhs);
show eq2;
Output
"eq2" → -12 + x == 17*y
eq = (x -3 == 17*y + 9);
lhs = eq.left -9;
rhs = eq.right - 9;
eq2 = (lhs == rhs);
show eq2;
Output
"eq2" → -12 + x == 17*y