In Maxima, how can I solve this equation? And actually I have 24 unknown value with lots of this kind of equation. How I can use Maxima to solve?
to know the unknown value: a, b, c, d
eq:[a*c=8,a*d=10,b*c=12,b*d=15,a+b=5,c+d=9];
solve(eq,[a,b,c,d]);
Your equations are, if I'm not mistaken, polynomials in several variables of degree 2 or greater (where the degree is equal to the maximum number of variables multiplied together). You say that you have more equations than unknowns.
If I'm not mistaken, in general there are no exact solutions, but you can look for a best-fitting solution via least squares. I don't know how many locally best-fitting solutions there might be. You might ask on math.stackexchange.com about the number of solutions and other characteristics of such equations.
Here is a way to look for a locally best-fitting solution in Maxima. Form a "figure of merit" expression (
fom
below) from the equations, and look for a local minimum of it. I'll uselbfgs
to search for a numerical approximation.Here
fom
is just the sum of squares of error (i.e. the discrepancy between the right hand side and left hand sides of the equations, squared and added up).I can guess that the
a = 2, b = 3, c = 4, d = 5
might be an exact solution. I can verify that:That's encouraging in this case, but in general I think there won't be an exact solution near the approximate one. The approximate solution may be the best you can do.