Currently, this program supports the following functions:
sin, cos, tan,
asin, acos, atan,
sinh, cosh, coth,
asinh, acosh, acoth,
sec, csc, cot,
asec, acsc, acot,
sech, csch, coth,
asech, acsch, acoth,
sqrt, ln, log, abs
Currently 28 functions total.
(for logs that dont conform to logbase10 or ln, use change of base formula before inputting)
-Enter the problem in its most reduced form. In the current version, the calculator can't catch edge cases where a function may reduce via division, and can produce a dividing by zero error. E.G: (y^2)/y where y = 0 will produce an error.
-Enter functions with the term they're being applied to in parentheses. E.G: Sin(12x-2) or cos(2x), not cosx
-Functions are to be typed in lowercase. sin, cos, tan, etc.
-exponentiation of functions is to be denoted as (sin(x))^2, NOT sin^2(x), to avoid ambiguity.
-enter inverse trig as asin, acos, etc.. not arcsin or sin^-1
-Decimals should be entered as 0.123, not .123
-Note that this program does not support factorials or complex values in the current version.