Computer Algebra
Hello,
I am writing a computer algebra system and I need help solving a variable in an equation from an abstract syntax tree.
How can I make something like a Term Rewriting System that rewrites equation in simplist form?
Is there any way to automatically let the computer to combine like terms?
How can I tell the computer to transform an equation to a specic form? One example is form where all of the terms are on the left side and zero is on the right side. Thus the quadratic polynomials in this form can be solved by the quadratic equation.
How can make the program automatically Factor, Expand, Simplify, Solve, Reduce etc. the equation without changing its value?
Thank you very much

