Subtract from Sides
**What**What: Subtract the same expression from the both sides of ==
**Why**Why: Such side-wise subtraction is an essential computation for solving equations
**Time Toto Complete**Complete: 3 hours
eq = (x -3 == 17*y + 9);
lhs = eq.left - 9;
rhs = eq.right - 9;
eq2 = (lhs == rhs);
show eq2;
save as sides;
Output
"eq2" → -12 + x == 17*y
Output
"lhs" → (-12 + x)/17
"rhs" → y
"rhs" → y
© 2012-Present CCN Studios
Creative Commons Attribution-NonCommercial-ShareAlike 4.0