- What functions are supported?
- Arithmetic (+, -, *, /), parentheses, modulo (%), exponentiation (**), sqrt, sin/cos/tan, log, ln, abs. Plus constants pi and e.
- Is it safe to paste untrusted expressions?
- Yes — the calculator uses a dedicated math parser, not eval(). It can't execute arbitrary code — only math expressions.
- Decimal or fraction results?
- Decimal. For fractional math, use a symbolic calculator (WolframAlpha, SymPy). This tool focuses on quick numerical answers.
- Order of operations?
- Standard PEMDAS/BODMAS. Exponentiation is right-associative (2^3^2 = 2^9 = 512). Parentheses override everything.