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
hs = x-3;
rhs = 17*y+9;

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

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

show lhs also rhs;

save as trash;
**Output**
<style>

Output

<div class="box">
"lhs" → (-12 + x)/17 <br>
"rhs" → y </div>
```