Scientific Calculator - Calculate mathematical expressions with scrollable high accuracy/precision up to 1,000,000 digits.
You can scroll through the result by dragging, using the mouse wheel, and arrow keys.
Loading Calculator...
^, e, exp, ln, sin, cos, tan, asin, acos, atan, and their hyperbolic counterparts are recomputed from scratch using Taylor series or Newton iteration for each higher precision request. Scrolling through these results (tens of thousands of digits) can trigger progressively slower recalculations.e, trigonometric functions, and logarithms may slow down beyond 10,000 digits.^: x*x is much faster than x^2, and x*x*x is much faster than x^3. The power operator ^ even for simple cases falls back to log/exponent computation (exp(y*ln(x))), which involves uncached Taylor series evaluations.