I have the following set of equations, and I want to solve them simultaneously for X and Y. I've been advised that I could use numpy to solve these as a system of linear equations. Is that the best option, or is there a better way?
a = (((f * X) + (f2 * X3 )) / (1 + (f * X) + (f2 * X3 ))) * i b = ((f2 * X3 ) / (1 + (f * X) + (f2 * X3))) * i c = ((f * X) / (1 + (j * X) + (k * Y))) * i d = ((k * Y) / (1 + (j * X) + (k * Y))) * i f = 0.0001 i = 0.001 j = 0.0001 k = 0.001 e = 0 = X + a + b + c g = 0.0001 = Y + d h = i - a

numpy, which is probably the right answer, check out sympy. – agf Apr 14 '12 at 23:44numpy.solve(someMatrix)would do quite nicely. – Joel Cornett Apr 15 '12 at 0:20solve(x^2 - 2 == 0)will give the float1.414213in scipy, and an object representingsqrt(2)exactly in sympy. i.e. they are different. – dbaupp Apr 15 '12 at 2:09XandY. If you needXandY, linear algebra can't directly solve this problem. A symbolic solver likesympy(or maple or mathematica) might be more help. Alternately, you could go for a non-linear numerical solution. – Joe Kington Apr 15 '12 at 21:37