nicolewhite / algebra.js

Build, display, and solve algebraic equations.
http://algebra.js.org
MIT License
1.34k stars 111 forks source link

Added integration of expressions #84

Open Benjadahl opened 7 years ago

Benjadahl commented 7 years ago

Use:

        var exp = new Expression("x").multiply(2);

        var answer = exp.int("x");

        answer;

        > x^2