logarithm, with 1st argument as a base, of the 2nd argument
2
Power and Root
sqrt
square root
1
root
first argument root of the second argument
2
Miscellaneous
abs
absolute value
1
sgn
sign or signum function
1
Please Note:
Multiplication must be explicitely specified with the "*" operator as "a*x" and not as "a x".
Function arguments must be enclosed within parenthesis "( ... )", like "sin( x )" and not like "sin x". There can't be a space between the functor and the open parenthesis for the arguments.
Character sequences pi and e are treated as special numbers and not as variables.
Equations, including differential must be specified as proper equations with "=" character.
If you need to use an indexed variable, like xi (for example x1, x2,...) , please use the the index numbers as suffixes to the variable names, like x1, x2, ...
Variable names are case sensitive! x and X are interpreted as two different variables.