# This small test program does 3 things: 1) differentiate 2*x^3, 2) integrate # 3*x^2*sin(x)+x, 3) solve the equation 3*x^2+2*x-1, for x # diff( 2*x^3,x ); int( 3*x^2*sin(x)+x,x ); solve( 3*x^2+2*x-1,x );