Scientific Calculator
A full scientific calculator supporting trigonometry, logarithms, roots, exponents, and standard order of operations.
Inputs
Supports + − × ÷ ^ %, parentheses, sin/cos/tan/asin/acos/atan (degrees), sqrt, log (base 10), ln, abs, exp, round, floor, ceil, min, max, and the constants pi and e.
Result
Fill in the fields to see your result.
Formula
Expressions are parsed and evaluated with standard mathematical order of operations (parentheses, then exponents, then multiplication/division, then addition/subtraction).
e.g. sin(45) + sqrt(16) * 2 → 0.707 + 4 × 2 = 8.707Step-by-step
- 1
Type an expression
Use +, −, *, /, ^ (power), % (modulo), and parentheses.
- 2
Use functions if needed
sin, cos, tan, asin, acos, atan (all in degrees), sqrt, log, ln, abs, exp, round, floor, ceil, min, max.
- 3
Read the result
Your expression evaluates live as you type.
Examples
Basic arithmetic
- expression
- (4 + 6) * 3 / 2
= 15
Trigonometry
- expression
- sin(30) + cos(60)
= 1
Roots and exponents
- expression
- sqrt(144) + 2^5
= 44