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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -