chinaman209
- 3
- 0
Can someone pls explain hot to compute a taylor expansion for f(x,y) using mathematica
The discussion focuses on computing a Taylor expansion for the function f(x,y) using Mathematica's Series function. The correct syntax is Series[f[x,y],{x,0,1},{y,0,1}]. Users encountered zero terms in their expansions, which were clarified as O(y+2)^2, indicating higher order terms rather than actual zeros. To eliminate these terms, the Normal function should be applied: Normal[Series[...]].
PREREQUISITESMathematics students, researchers in computational mathematics, and anyone using Mathematica for symbolic computation and function analysis.