taylor(x,x,0,1)^2 =/= taylor(x^2,x,0,1);



Is there an easy way to get Maxima to do taylor(x,x,0,1)^2 --> 0 + ...
instead of x^2 + ...? I could send taylor(x,x,0,1)^2 back
through taylor, but that seems inefficient.

(%i5) [taylor(x,x,0,1)^2, taylor(x^2,x,0,1)];
(%o5) [x^2+...,0+...]

Barton