Common errors and how to fix them when entering mathematical functions
The calculator validates your input as you type, highlighting errors with red underlines and providing helpful suggestions.
Missing multiplication operator
2t + 3sin(t)2*t + 3*sin(t)Always use * for multiplication between variables and functions
Incorrect exponential syntax
e^(-2*t)exp(-2*t)Use exp() function for exponentials, not e^
Unbalanced parentheses
sin(3*t + cos(2*t)sin(3*t) + cos(2*t)Ensure every opening parenthesis has a matching closing one
Incorrect step function syntax
u(t-2)heaviside(t-2)Use heaviside() for unit step functions
Always use * for multiplication, ^ for exponents
2*tt^23*sin(t)Use standard mathematical function names
sin(t)cos(t)exp(t)log(t)Use correct syntax for special functions
heaviside(t-1)dirac(t)sqrt(t)Check our function syntax guide or contact support for help