Symbolic capabilities
- general manipulation
- f := exp(x)^2 * exp(y);
- combine(f,exp);
- f := ln(x) - ln(y);
- combine(f,ln);
- f := 2*sin(x)*cos(x);
- combine(f,trig);
- f := x^2 - 2*x - 15;
- factor(f);
- g := sqrt(x^2);
- simplify(g);
- simplify(g, assume=real);
- simplify(g, assume=positive);