Evaluate mathematical expressions with real-time results and intelligent auto-completion.
sum(5 becomes sum(5))sum(5* becomes sum(5*1))sum(a, b, c, ...) - Add multiple numbersproduct(a, b, c, ...) - Multiply multiple numbersavg(a, b, c, ...) - Calculate averagemin(a, b, c, ...) - Find minimum valuemax(a, b, c, ...) - Find maximum valuegcd(a, b, c, ...) - Greatest Common Divisorlcm(a, b, c, ...) - Least Common Multiplefactorial(n) - Calculate factorialabs(n) - Absolute valuesqrt(n) - Square rootpow(base, exp) - Power functionround(n, decimals) - Round to decimal placesfloor(n) - Round downceil(n) - Round upsin(x), cos(x), tan(x) - Basic trig functionsasin(x), acos(x), atan(x) - Inverse trig functionslog(x) / ln(x) - Natural logarithmlog10(x) - Base-10 logarithmexp(x) - Exponential (e^x)pi / PI - π (3.14159...)e / E - Euler's number (2.71828...)sum(5+4, 7, 6*3) → 34
gcd(48, 18) → 6
lcm(12, 18, 24) → 72
sqrt(pow(3, 2) + pow(4, 2)) → 5
sin(pi/2) → 1
factorial(5) → 120
avg(10, 20, 30) → 20
round(3.14159, 2) → 3.14
You can combine multiple functions and use arithmetic operators within arguments for complex calculations.