
Math Learning
Educational server that provides mathematical calculations, statistical analysis, and data visualization with the ability to save work to a persistent workspace.
What it does
- Calculate mathematical expressions with basic operations and functions
- Perform statistical calculations (mean, median, mode, standard deviation)
- Calculate compound interest for investments
- Convert between different units of measurement
- Save and load calculation results to persistent workspace
- Generate plots for mathematical functions and statistical data
Best for
Tools (17)
Safely evaluate mathematical expressions with support for basic operations and math functions. Supported operations: +, -, *, /, **, () Supported functions: sin, cos, tan, log, sqrt, abs, pow Examples: - "2 + 3 * 4" → 14 - "sqrt(16)" → 4.0 - "sin(3.14159/2)" → 1.0
Perform statistical calculations on a list of numbers. Available operations: mean, median, mode, std_dev, variance
Calculate compound interest for investments. Formula: A = P(1 + r/n)^(nt) Where: - P = principal amount - r = annual interest rate (as decimal) - n = number of times interest compounds per year - t = time in years
Convert between different units of measurement. Supported unit types: - length: mm, cm, m, km, in, ft, yd, mi - weight: g, kg, oz, lb - temperature: c, f, k (Celsius, Fahrenheit, Kelvin)
Save calculation to persistent workspace (survives restarts). Args: name: Variable name to save under expression: The mathematical expression result: The calculated result Examples: save_calculation("portfolio_return", "10000 * 1.07^5", 14025.52) save_calculation("circle_area", "pi * 5^2", 78.54)