vote up 4 vote down star
1

I need to solve a few mathematical equations in my application. Here's a typical example of such an equation:

a + b * c - d / e = a

Additional rules:

  • b % 10 = 0
  • b >= 0
  • b <= 100
  • Each number must be integer
  • ...

I would like to get the possible solution sets for a, b, c, d and e.

Are there any libraries out there, either open source or commercial, which I can use to solve such an equation? If yes, what kind of result do they provide?

flag

40% accept rate
This doesn't look like homework, Bill K. Most homework assignments don't require external libraries. Please, think before you retag. – Landon Oct 7 '08 at 23:45

10 Answers

vote up 0 vote down

The TI-89 Calculator has a 'solver' application. It was built to solve problems like the one in your example. I know its not a library. But there are several TI-89 emulators out there.

link|flag
vote up 0 vote down

Looking only at the "additional rules" part it does look like linear programming, in which case LINDO or a similar program implementing the simplex algorithm should be fine.

However, if the first equation is really typical it shows yours is NOT a linear algebra problem - no 2 variables multiplying or dividing each other should appear on a linear equation!

So I'd say you definitely need either a computer algebra system or solve the problem using a genetic algorithm.

Since you have restrictions similar to those found in linear programming though you're not quite there, if you just want a solution to your specific problem I'd say pick up any of the libraries mentioned at the end of Wikipedia's article on genetic algorithms and develop an app to give you the result. If you want a more generalist approach, then you've got to simulate algebraic manipulations on your computer, no other way around.

link|flag
vote up 2 vote down

Solving linear systems can generally be solved using linear programming. I'd recommend taking a look at Boost uBLAS for starters - it has a simple triangular solver. Then you might checkout libraries targeting more domain specific approaches, perhaps QSopt.

link|flag
vote up 1 vote down

I know it is not your real question, but you can simplify the given equation to:

d = b * c * e with e != 0

link|flag
That doesn't work for d=0, b=1, c=1. The best I came up with is b * c = d / e – dummy Oct 7 '08 at 21:24
Argh, just ignore this. – dummy Oct 7 '08 at 21:26
vote up 2 vote down

You're venturing into the world of numerical analysis, and here be dragons. Seemingly small differences in specification can make a huge difference in what is the right approach.

I hesitate to make specific suggestions without a fairly precise description of the problem domain. It sounds superficiall like you are solving constrained linear problems that are simple enough that there are a lot of ways to do it but "..." could be a problem.

A good resource for general solvers etc. would be GAMS. Much of the software there may be a bit heavy weight for what you are asking.

link|flag
vote up 0 vote down

In addition to the other posts. Your constraint sets make this reminiscent of an integer programming problem, so you might want to check that kind of thing out as well. Perhaps your problem can be (re-)stated as one.

You must know, however that the integer programming problems tends to be one of the harder computational problems so you might end up using many clock cycles to crack it.

link|flag
vote up 0 vote down

This looks like linear programming. Does this list help?

link|flag
this looks almost nothing like linear programming. – David Nehme Oct 17 '08 at 20:19
vote up 0 vote down

You're looking for a computer algebra system, and that's not a trivial thing.

Lot's of them are available, though, try this list at Wikipedia:

http://en.wikipedia.org/wiki/Comparison_of_computer_algebra_systems

-Adam

link|flag
vote up 1 vote down

You want a computer algebra system.

See http://stackoverflow.com/questions/160911/symbolic-math-lib, the answers to which are mostly as relevant to c++ as to c.

link|flag
vote up 0 vote down

Pretty sure Numerical Recipes will have something

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.