I have built a full working calculator that evaluates any expression and graphs it. I have also built a Symbolic Differentiator that correctly differentiates the formula w.r.t. x but im a bit lost for how to simplify any generic equation programmatically because at the minute the answers are coming out with many multiples of ones. I realise a*1 is easily simplified but i need an all round simplifier to cover any situation.
|
|
I'd think of simplification as a form of normalization. Probably the first thing you might want to implement is simplification of polynomials:
If you want to also simplify expressions containing functions, things can become arbitrary complex. In general, I'd try to define some way to measure the simplicity of a term, i.e. given two terms, decide which of the two is simpler. Then you can think of rules and check whether you can guarantee that they will only ever make your terms simpler. You might also want to check for termination (i.e. there is no way your terms can become ever simpler for an infinite number of steps) and confluence (i.e. when there are two possible simplifications, it won't matter which one you do next, as the end result will be the same). You might want to read some literature on term rewriting, rewrite systems and related topics. |
|||
|