A complete scientific computation suite — web-native and Discord-ready. Built on math.js with a custom evaluation layer.
Full derivative engine with automatic application of product, chain, quotient, and power rules. No approximations — exact symbolic results every time.
// Product rule derivative(sin(x) * x^2, x) → cos(x) * x ^ 2 + sin(x) * 2 * x // Chain rule derivative(sin(x^2), x) → cos(x ^ 2) * 2 * x // Logarithm derivative(log(x^3), x) → 3 / x
Comprehensive linear algebra toolset for any matrix size. Powered by math.js's optimized numeric engine with exact results for integer matrices.
// Inverse inv([[1,2],[3,4]]) → [[-2, 1], [1.5, -0.5]] // Determinant det([[3,2],[1,4]]) → 10 // Solve Ax = b lusolve([[2,0],[0,3]], [4,9]) → [[2], [3]]
First-class complex number support using i as the imaginary unit. Polar form, Euler's identity, modulus, and argument all supported natively.
i
// Multiplication (3 + 4i) * (1 - 2i) → 11 - 2i // Euler's formula exp(pi * i) → -1 + 1.2246e-16i ≈ -1 // Modulus abs(3 + 4i) → 5
Full descriptive stats suite plus combinatorics and probability tools. Works on any numeric array — just pass your data inline.
// Descriptive stats std([4, 7, 13, 16, 21]) → 6.28... // Combinatorics combinations(52, 5) → 2598960 // Factorial factorial(20) → 2432902008176640000