Skip to main content

Manual Operations on the Sides

What: Use ff to duplicate the manual ways of school teachings Why: : To make sure you understand how to manipulate sides of an equation on your own. How: :Simply try to duplicate what the teacher does to solve an equation by working the sides. span Time To Complete: 3 hours

Alt Text

Manully set the lhs and rhs variables to some expressions of choice and then commence, step by step, applying the same arithmetic operations to both sides.

In this example, the equation

x-3 = 17*y+y +9

is being solved for y namely the equation is transformed to a new equation with y alone on either side as the solution.

lhs = x-x - 3;
rhs = 17*y+17 * y + 9;

lhs = lhs - 9;
rhs = rhs - 9;

lhs = lhs/lhs / 17;
rhs = rhs/17;rhs / 7;

show lhs also rhs;

save as sides;

Output

"lhs" → (-12 + x)/17
"rhs" → y

© 2012-Present CCN Studios

Creative Commons Attribution-NonCommercial-ShareAlike 4.0