Ask for the syntax of representing operators in Common-Lisp



Does 'grind' do what you want? Example:

(%i1) integrate(x^2+x,x);
(%o1) x^3/3+x^2/2
(%i2) grind(%);
x^3/3+x^2/2$

Barton