Function Definitions



Operators: + - * / and parentheses
Constants: Pi (=3.14...), e (=2.718...), Deg(=180/Pi = 57.2...)
Built-in Functions...
Algebraic: Abs, Sqrt, Power(x,y) (= x raised to y), Fact (factorial)
Transcendental: Exp, Ln (natural), Log10, Log2
Trigonometric: Sin, Cos, Tan, Cot, Sec, Csc
Inverse Trig: ASin, ACos, ATan, ACot, ASec, ACsc
Hyperbolic: SinH, CosH, TanH, CotH, SecH, CscH
Inverse Hyp: ASinH, ACosH, ATanH, ACotH, ASecH, ACscH


Note: These are case-sensitive. Please enter exactly as above.

Note: Arguments for trig functions should be in radians. For degrees, multiply or divide by the Deg variable depending on forward or inverse function. For example: Sin(30/Deg) will return 0.5, and ATan(1)*Deg will return 45.

Reference