Calculate scientific

Evaluate selected roots, powers, logarithms, trigonometric functions, reciprocals, and factorials.

freeworks offlinenothing uploaded
ToolScientific Calculator
Input
Output
Put this on your own site

The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.

Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.

Preview

How it works

The selected operation dispatches to JavaScript Math functions, converting degree input to radians for trigonometry and back for inverse results. Factorial uses a bounded product while logarithms and roots validate real-domain constraints.

  • Square root and radians are initial choices.
  • Factorial is capped before non-finite output.

Worked example

Square Root
Calculate the square root of 144
Input
											144
										
Output
												sqrt(144) = 12
											

When to use this

Engineering worksheets evaluate trig values, science lessons compare logs, and numerical checks compute roots or factorials.

Edge cases

  • Degree input is converted before trigonometric Math calls.
  • Reciprocal of zero is rejected.
  • Even roots of negative values have no real result.

References