vote up -3 vote down star

Both Wolfram Alpha and Bing are now providing the ability to solve complex, algebraic logic problems (ie "solve for x, given this equation"), and not just evaluate simple arithmetic expressions (eg "what's 5+5?"). How is this done?

I can read most types of code that might get thrown at me, so it doesn't really make a difference what you use to explain and represent the algorithm. I find that bash makes a really good pseudo-code, not to mention its actually functional, so that'd be ideal. Also, I'm fairly familiar with its in's and out's. Sorry to go ranting on a tangent, but it really irritates me to see people spend effort on crunching out "pseudocode" when they could be getting something 100% functional for just slightly more effort. Anyways, thanks so much for advance.

flag
Search for "symbolic algebra". The most extant example is probably mathematica. These is a simple OpenSource example called mathomatic. – dmckee Jun 14 at 19:49
what's the question? – Nathan Fellman Jun 14 at 19:52
1  
@Nathan Fellman: "Define tangent.", I would think. :) – Ryan Oberoi Jun 14 at 20:01
1  
This is a pretty close match: stackoverflow.com/questions/348847/… – dmckee Jun 14 at 20:01
3  
For some reason, the OP is hell-bent on destroying their own question. – gnovice Jun 14 at 20:42
show 5 more comments

1 Answer

vote up 7 vote down

There are 2 main methods to solve:

  1. Numeric methods. Numerical methods mean, basically, that the solver tries to change the value of x until the equation is satisfied. More info on numerical methods.

  2. Symbolic math. The solver manipulates the equation as a string of symbols, by a number of formal rules. It's not that different from algebra we learn in school, the solver just knows a lot of different rules. More info on computer algebra.

link|flag

Your Answer

Get an OpenID
or

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