in reply to Solving Math Equations
Your sample equation is nifty since the solution is
a complex number. Maxima program:
yields:solve([2*x*(-5*10*x)=100],[x])
Where %I is maxima's notation for sqrt(-1) .[x = - %I, x = %I]
Maxima is massive overkill for your requirements, since it can also solve nasty problems such as the indefinite integral:
or a relatively difficult problem in two variables:integrate(sin(x)*exp(x^2),x);
solve([2*x^2+14*y+y^2=5,x*y+14*x+x^2=0],[x,y])
Even though it is overkill, it is a good open-source problem-solver for easy algebra problems.
I have used Maxima for many real-world problems and also for teaching algebra. It is much better at algebra than I am, so I use it because I don't have the answer key for my textbook!
It should work perfectly the first time! - toma
|
|---|