[Newbie:] How to discard higher orders of variables?



Another technique to consider for multiple variables <<1 is

          taylor( ..., [x,y,z], 0, 5)

which truncates at terms beyond x^a*y^b*z^c where a+b+c > 5

e.g.

         taylor (  (k+x+y)^(1/2) - (l+x^2+y^2)^(1/4) , [x,y], 0, 1) =>

              -l^(1/4)+sqrt(k)+(sqrt(k)*x+sqrt(k)*y)/(2*k)