DJ Mike's Equation Calculator




<div style="color:red"><span style="text-align:center;">Javascript Disabled!</span> The buttons below require javascript to function.<br> If you are a WebTV user, reload the page until you don't see this message </div>
Instructions    Examples


FormatDiscription
abs(x) Absolute Value
acos(x) Arc cosine
acosh(x) Inverse hyperbolic cosine
asin(x) Arc sine
asinh(x) Inverse hyperbolic sine
atan(x) Arc tangent
atanh(x) Inverse hyperbolic tangent
base_convert( number, frombase, tobase) Convert a number between arbitrary bases
bindec(x) Binary to decimal
ceil(x) Ceiling (rounds up)
cos(x) Cosine
cosh(x) Hyperbolic cosine
decbin(x) Decimal to binary
dechex(x) Decimal to hexadecimal
decoct(x) Decimal to octal
deg2rad(x) Degrees to radians
exp(x) Exponent ( e to the x power)
exp1(x) Returns exp(number) - 1
floor(x) Floor (rounds down)
fmod(x,y) Modulo
hexdec(x) Hexadecimal to decimal
hypot(x,y) Hypotenuse
log(x) Natural logarithm
log1p(x) Returns log(1 + number)
log10(x) Base 10 logarithm
max( x, y, z ... ) Find highest value
min( x, y, z, ...) Find lowest value
octdec(x) Octal to decimal
pi() Pi
pow( x, y) Power x^y
rad2deg(x) Radians to degrees
rand( min, max) Random number between min and max
round( number, places) Rounds to a spacified number of places
sin(x) Sine
sinh(x) Hyperbolic sine
sqrt(x) Square root
tan(x) Tangent
tanh(x) Hyperbolic tangent

Instructions

If you are using this calculator for the first time, you may be wondering where the buttons for numbers and basic math operators are. The answer is ... You don't need them. Instead, you enter an equation into the text area. For example, suppose you want to convert 70º Fahrenheit to Celsius, You know, or look up and find that C=(F-32) x 5/9. What you would enter into this calculator is (70-32)*5/9

The equation must be valid. Division by zero will cause an error. Using your Return key in the input textarea will cause an error. Entering a semicolon or other punctuation mark that is not a math operator will cause an error. The letter x is not a math operator. Use * (Shift-8) to multiply.

To use trigonometric, scientific and other functions, you can click the appropriate button or enter it yourself following the formats in the table above. Trigonometric functions expect radians so if you are using degrees, you need to use deg2rad() to convert them to radians.

Examples

  1. Add 2 and 2
    2+2
  2. Multiply 3 times 5
    3*5
  3. Square root of 9
    sqrt(9)
  4. Sine of 45 degrees
    sin(deg2rad(45))
  5. Area of a circle with a radius of 5
    pi()*pow(5,2)
  6. Volume of sphere with radius of 5
    (4/3)*pi()*pow(5,3)
  7. Convert hexadecimal FF to decimal
    hexdec(ff)



http://danceawaysb.com

DJ Mike