Scientific Calculator
A full-featured scientific calculator supporting trigonometric functions, logarithms, exponentiation, roots, and mathematical constants. Switch between Degrees and Radians for angle-based calculations.
| Common values (DEG mode) | sin | cos | tan |
|---|---|---|---|
| 0° | 0 | 1 | 0 |
| 30° | 0.5 | 0.866 | 0.577 |
| 45° | 0.707 | 0.707 | 1 |
| 60° | 0.866 | 0.5 | 1.732 |
| 90° | 1 | 0 | ∞ |
Type your expression using the buttons or keyboard. Functions like sin, cos, log require an opening parenthesis — e.g. sin(30). Close with ) before pressing =.
Toggle the DEG/RAD button in the top-right corner. In DEG mode all trig functions expect angles in degrees. In RAD mode they expect radians. The conversion is applied automatically.
π inserts 3.14159… and e inserts 2.71828… — use them anywhere in your expression, e.g. 2*pi*5 for the circumference of a circle with radius 5.
Inserts the result of the previous calculation so you can chain operations without retyping.
These return the angle whose sine/cosine/tangent equals the input. In DEG mode the result is in degrees; in RAD mode in radians.
- •Use parentheses to control order of operations: 2^(3+1) is 16, but 2^3+1 is 9.
- •You can nest functions: sqrt(sin(45)) works fine in DEG mode.
- •Press Escape to clear, Backspace to delete one character.