Tuesday 11 April 2017

Quick Calculator - Type in Calculation and Get Instant Result

Quick Type-in Calculator
Enter value to calculate and get instant result.
* is multiply, / is divide, + is add, and - is subtract.
() e.g. (1+1)*10 also allowed.



Exact Calculation

Calculation to 0 decimal places

Calculation to 1 decimal places

Calculation to 2 decimal places

Calculation to 3 decimal places

Calculation to 4 decimal places

Calculation to 5 decimal places

Put brackets if you want to do any part of the calculation 1st . By default and as is a Math rule Multiplication and Division are performed before Addition and Subtraction. If you want to do addition or subtraction 1st, you can do so by putting these in brackets e.g. (1+1) * 2. Another operator is the remainder operator % which is used to get the remainder e.g. 5 % 2 will give 1 because remainder f dividing 5 by 2 is 1.

The Quick Calculator to get instant results gives various options like exact output and same  output from 0 to 5 decimal places so that all you have to do is use the result up to the decimal places you want.

This Quick Calculator supports All Javascript Math functions even complex functions e.g. Math.atan2(2,3).
Some examples are provided below where x, y etc. are any 2 numbers you are using in these.

Math.abs(x)
Calculates the absolute value of the number.

Math.acos(x)
Calculates the arccosine of the number.

Math.acosh(x)
Calculates the hyperbolic arccosine of the number.

Math.asin(x)
Calculates the arcsine of the number.

Math.asinh(x)
Calculates the hyperbolic arcsine of the number.

Math.atan(x)
Calculates the arctangent of the number.

Math.atanh(x)
Calculates the hyperbolic arctangent of the number.

Math.atan2(y, x)
Calculates the arctangent of the quotient of its arguments.

Math.cbrt(x)
Calculates the cube root of the number.

Math.ceil(x)
Calculates the smallest integer greater than or equal to the number.

Math.clz32(x)
Returns the number of leading zeroes of a 32-bit integer.

Math.cos(x)
Calculates the cosine of the number.

Math.cosh(x)
Calculates the hyperbolic cosine of the number.

Math.exp(x)
Returns Ex, where x is the argument, and E is Euler's constant approximately (2.718…), the base of the natural logarithm.

Math.expm1(x)
Returns subtracting 1 from exp(x).

Math.floor(x)
Returns the largest integer less than or equal to a number.

Math.fround(x)
Calculates the nearest single precision float representation of the number.

Math.hypot(x,y,z...)
Calculates the square root of the sum of squares of its arguments.

Math.imul(x, y)
Calculates the result of a 32-bit integer multiplication.

Math.log(x)
Calculates the natural logarithm (loge, also called ln) of the number.

Math.log1p(x)
Calculates the natural logarithm (loge, also called ln) of 1 + x for the number x.

Math.log10(x)
Calculates the base 10 logarithm of the number.

Math.log2(x)
Calculates the base 2 logarithm of the number.

Math.max(x,y,z...)
Calculates the largest of the numbers separated by commas.

Math.min(x,y,z...)
Calculates the smallest of the numbers separated by commas.

Math.pow(x, y)
Calculates base to the exponent power, x is the base and y is the power.

Math.random()
Returns a random number between 0 and 1.

Math.round(x)
Returns the value of a number rounded to the nearest integer.

Math.sign(x)
Calculates the sign of the x, indicating whether x is positive with +1, negative with -1 or zero.

Math.sin(x)
Calculates the sine of the number.

Math.sinh(x)
Calculates the hyperbolic sine of the number.

Math.sqrt(x)
Calculates the positive square root of the number.

Math.tan(x)
Calculates the tangent of the number.

Math.tanh(x)
Calculates the hyperbolic tangent of the number.

Math.trunc(x)
Calculates the part of the number x before the decimal places, removing all the digits after decimal.