How can I programatically truncate order "O" terms in Maple? -
in maple, taylor(exp(x),x,2);
returns 1+x+o(x2). how can automatically convert result same expression o(x2) terms removed? i.e. removebigo(taylor(exp(x),x,2));
return 1+x?"
p := taylor(exp(x),x,2); convert(p, polynom);
that conversion has own help-page.
note page taylor,details has such conversion last example. , page taylor mentions conversion of taylor series result polynomial described on details page.
Comments
Post a Comment