Symbolic computing and numeric evaluations for JavaScript and Node.js
npm install @concord-consortium/compute-engine
MathJSON is a lightweight mathematical notation interchange format based on JSON.
The Cortex Compute Engine can parse LaTeX to MathJSON, serialize MathJSON to
LaTeX, format, simplify and evaluate MathJSON expressions.
Reference documentation and guides at
cortexjs.io/compute-engine.
``bash`
$ npm install --save @cortex-js/compute-engine
`js
import { parse, evaluate } from '@cortex-js/compute-engine';
const expr = parse('2^{11}-1 \\in \\P');
console.log(expr);
// ➔ ["Element", ["Subtract", ["Power", 2, 11] , 1], "PrimeNumber"]
console.log(evaluate(expr));
// ➔ "False"
``
- Build instructions
- 🌟 Star the GitHub repo (it really helps)
- 💬 Ask questions and give feedback on our
Gitter Forum
- 📨 Drop a line to arno@arno.org
This project is licensed under the MIT License.