I do a ton of pencil and paper math for my job, which can get annoying and hard to keep track of. And I haven't had a fun programming project in a while, so I thought of something, and want to know if it exists yet.
I want to create an algebra manipulation program, where I can move pieces of the equation around with my mouse, and it displays the change immediately, and the program is intuitive. For example, I if I had (ax^3 + a^2*y^4), I could drag one of the a's outside of the parenthesis and it would know to turn it into a(x^3 + a*y^4).
Just to be clear: I'm not trying to make something that solves an equation analytically. I know Mathematica and a million other programs do that. In the thing I'd like to make, you'd still be solving it (often I'm not even "solving" something per se, really just trying to get it into a "pleasing form". Which isn't something a program can really do).
I've checked out MathCAD and it seems cool, but still not like what I'm talking about. I've checked out sympy as well (and I may end up using it if I make this) but it still doesn't have what I'm talking about.
So, does anyone know if this exists already? I'd like to do it but I don't want to reinvent the wheel.
Thank you!!
maximaGUIs? wxmaxima springs to mind. It may or may not be GUI, but it certainly has tools for expanding and factoring algebraic equations. (The magic Google words are probably "computer algebra system".) – Li-aung Yip May 19 '12 at 17:53