-
Notifications
You must be signed in to change notification settings - Fork 2
Supported Functions and Operations
James Sharkey edited this page Jan 25, 2019
·
4 revisions
- Addition (
+
) and Subtraction (-
) - Multiplication (
*
, implicitlyxy
, implicitlyx y
) - Division (
/
) - Exponentiation (
**
,^
) - Unary Negation (
-
)
- Integers (
0
,1
,-1
, ...) - Decimals (
0.123
, ...) - Rational Numbers (
1/2
, ...)
- Standard trig functions (
sin()
,cos()
,tan()
) - Inverse trig functions (
arcsin()
,arccos()
,arctan()
) - Reciprocal trig functions (
cosec()
,sec()
,cot()
) - Inverse reciprocal trig functions (
arccosec()
,arcsec()
,arccot()
) - Hyperbolic trig functions (
sinh()
,cosh()
,tanh()
) - Inverse hyperbolic trig functions (
arcsinh()
,arccosh()
,arctanh()
) - Reciprocal hyperbolic trig functions (
cosech()
,sech()
,coth()
)
No inverse reciprocal hyperbolic trig functions
- Exponential function (
exp()
) - Natural logarithm (
ln()
) - Base 10 logarithm (
log()
) - Logs to other bases (
log(x, base)
)
- Square root (
sqrt()
) - Modulus (
abs()
)
- Derivatives (
Derivative(y, x)
,Derivative(y, x, 2)
,Derivative(y, x, x)
, ...)
- Equations (
x == y
) - Inequalities (
x < y
)
- AND (
&
,and
) - OR (
|
,or
) - NOT (
~
,not
)
- Implication (
>>
,<<
,Implies(P, Q)
) - Equivalence (
==
)