JavaScript computer algebra system
Posted
by Jonas
on Stack Overflow
See other posts from Stack Overflow
or by Jonas
Published on 2010-05-02T12:51:25Z
Indexed on
2010/05/02
12:57 UTC
Read the original article
Hit count: 352
I am looking for a simple computer algebra system (cas) for JavaScript but I can't find anything with google. I only need basic functionality:
- simplify expressions to some canonic form. Ability to check if two expressions are the same, i.e., a(x+y) == ax+ay
- parse mathematical formulas. I want it to be able to read expressions like ax²+4x.
- solve simple equations etc.
Do you know of such a library?
© Stack Overflow or respective owner