1.TCioinaEval v7.6.6 class can parse and evaluate and symbolic differentiate a mathematical expression in the same time. There is a component named DiffExpess that can differentiate only but it cannot work for all math expression e.g. sin(x)^cos(x)
2.CioinaEval can parse a list of math expressions e.g. sin(x),cos(x)^2,…,pi/6 and return a list of results
3.User can define own functions with unknown number of variables such as sum(x,y,…..)
4.CioinaEval can translate math expression into Mathematica form e.g. CoS(x)->Cos[x]
5.User can define function in math expression. There is an operator to define functions : ~ e.g. f(x)~sin(x), g(x)~f(x)^2,f(pi),g(pi/2)
6.User can define function with recursion e.g. Fact(n)~if(eq(n,0),1,n*Fact(n-1)),
7.CioinaEval can interpret correctly power (^)