Scientific Calculator
This is a powerful Scientific Calculator
You can use it like a normal calculator, or you can type formulas like (3+7^2)*2
It has many functions you can type in (see below)
numbers/images/decimal.js,numbers/images/calc.js
Examples
- Type in 12+2*3 (=18)
- Select "deg", type in cos(45) (=0.7071067811865476)
- Type in 2/sqrt(2) (=1.414213562373095)
Function Reference
A function will return NaN (Not a Number) when you give it invalid entries, such as sqrt(−1)
Operators
+
Addition operator
-
Subtraction operator
*
Multiplication operator
/
Division operator
^
Exponent (Power) operator
()
Parentheses (brackets)
Functions
sqrt
sin
cos
Cosine
tan
Tangent
asin
Inverse sine (arcsine)
acos
Inverse cosine (arccos)
atan
Inverse tangent (arctangent)
sinh
Hyperbolic sine
cosh
Hyperbolic cosine
tanh
Hyperbolic tangent
ln
The natural logarithm
log
The base-10 logarithm
abs
Absolute value (distance from zero)
sign
+1 for 0 or greater, otherwise −1
round
round to nearest integer
largest integer not greater than the input value
smallest integer (toward negative infinity) not less than the input value
fact
factorial function
Constants
Note: for more digits of accuracy but less functions try the Full Precision Calculator.