|\^/| Maple 10 (IBM INTEL LINUX) ._|\| |/|_. Copyright (c) Maplesoft, a division of Waterloo Maple Inc. 2005 \ MAPLE / All rights reserved. Maple is a trademark of <____ ____> Waterloo Maple Inc. | Type ? for help. # 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 ); 2 6 x > int( 3*x^2*sin(x)+x,x ); 2 2 x -3 x cos(x) + 6 cos(x) + 6 x sin(x) + ---- 2 > solve( 3*x^2+2*x-1,x ); 1/3, -1 > quit bytes used=997060, alloc=917336, time=0.02