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