For a software project, I need to calculate some things. on of the formulas looks like:
26280 = 2 * SQRT((149,598,000,000 - x) / 1.4) + x / 10,217,588,910,387,300,000
My colegue says you can't solve the above equation (you won't be able to find x
) I quite convinced you should be able to find x
, the problem is, I don't know how :(
I came as far as rewriting the above into:
((26280 - x) / 20,435,177,820,774,600,000)^2 = (149,598,000,000 - x) / 1.4
but now I'm stuck.
Could anyone explain to me how to move on, in order to find x
?