Skip to main content

Appendix A List of Available Functions

ln()

log()

e^()

cos()

arccos()

cosh()

sin()

arcsin()

sinh()

tan()

arctan()

tanh()

cot()

arccot()

coth()

sec()

arcsec()

sech()

csc()

arccsc()

csch()

floor()

int()

ceil()

abs()

sign()

sqrt()

  1. For absolute value, you can use |x| instead of abs(x).

  2. Factorial can be entered using !, e.g. 5! which is 5(4)(3)(2)(1).

  3. The exponential function e^(x) can also be entered exp(x).

  4. The sign function can also be entered as sgn(). It returns 1, if the input is positive, 0 if the input is 0, and -1, if the input is negative.

  5. For Spanish speakers, sin(x) can also be entered sen(x). Similarly, arcsin(x) = arcsen(x) and sinh(x) = senh(x).