Solving a system of 5 equations with 7 variables
I find myself constantly using a system of 5 equations with 7 different variables. I always know two of the variables, but the two that I know changes. Is there a way to write a single calculator that can solve for the unknowns instead of writing a different calculator for each combination?
equations:
mt=mf+mw
c=mf/mt
vf=mf/8.34
vw=mw/8.34
vt=vf+vw
Using the solve function only lets me solve for unknowns, so I'd have to rewrite the unknowns each time.
Using the find function requires me to guess, but I don't know how to distinguish from a known and a guess.
I could use if statements, but I'd have to write a huge set of formulas, which isn't ideal.
Any help would be appreciated.


