How to compute a Taylor expansion for f(x,y) using Mathematica?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 7K views
chinaman209
Messages
3
Reaction score
0
Can someone pls explain hot to compute a taylor expansion for f(x,y) using mathematica
 
Physics news on Phys.org
When I expand like that i get some zero terms like 0(y+2)^2.. and so one repeated a finite number of times. When i try to simplify the answer the zeroes don't go away. So are these really zero?
 
Those are not 0 (number zero) they are O (letter "Oh"). The term O[y+2]^2 means an unspecified term of order (y+2)^2 to represent all of the higher order terms in the expansion. If you want to get rid of it then just use:

Normal[Series[...]]