API Reference
Full reference for πω Math's core API functions, modules, and utilities. This documentation is generated from TypeScript sources.
Math Calculator API
Symbolic Integration
integrate('e^(-x^2)', 0,1)
// → "√π/2 * erfi(1)"
Equation Systems Solver
solveEquation(['2x + y = 5', 'x - y = 1'])
// → { x: 2, y: 1 }
Returns an object mapping variables to their computed values.
Visualization API
3D Visualizer
renderVisualizer('3D', z = sin(sqrt(x² + y²))/sqrt(x² + y²)+3)
Creates an interactive 3D rendering of mathematical surfaces with rotation, zoom, and perspective controls.
3D Visualization Preview
Algebraic Operators API
Matrix Operations
matrixDeterminant([[2,3],[4,5]])
// → -2
Operates on 2D matrices for linear algebra applications.
Polynomial Utilities
rootFinder('x^3 - 2x + 2')
// → [1.769, -0.885 ± 1.077i]
Can find complex roots of univariate polynomials up to degree 10.