Exercise algebra.equations.linear.balance

Description
Solve a linear equation using only balance rules.

Derivation

3*(1/5*x-1)+19 == 7*x
algebra.equations.linear.balance.distribute
3/5*x+16 == 7*x
algebra.equations.linear.balance.remove-div, factor=5
3*x+80 == 35*x
algebra.equations.linear.balance.var-right-minus, term=3*x
80 == 32*x
algebra.equations.linear.balance.scale-to-one, factor=32
5/2 == x
algebra.equations.linear.flip
x == 5/2