I’m hoping to get a script working that can solve for whichever variable is missing in an equation:
x + y = z
Given:
x = 5
z = 2
y = ?
Where if I unplug the given value for one variable and provide it into a new slot (x = ?, z = 2, y = 7), I can automatically output the missing x variable value.
well, test for which variable is missing, then feed it to the algebraic form of the equipment; i.e., if y is missing, then y=z-x. if z is missing, x=z-y ; etc
Thanks @seghierkhaled, this is more or less what I was looking for. Guess I’ll have to do the algebra on my end, but only once per variable as opposed to every time.