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

Click For Summary
SUMMARY

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[...]].

PREREQUISITES
  • Familiarity with Mathematica programming language
  • Understanding of Taylor series and their mathematical significance
  • Knowledge of function expansion techniques
  • Basic experience with symbolic computation
NEXT STEPS
  • Learn how to use the Normal function in Mathematica for simplifying series expansions
  • Explore advanced features of Mathematica's Series function
  • Study the implications of higher order terms in Taylor expansions
  • Investigate symbolic computation techniques in Mathematica
USEFUL FOR

Mathematics students, researchers in computational mathematics, and anyone using Mathematica for symbolic computation and function analysis.

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
Series[f[x,y],{x,0,1},{y,0,1}]
 
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[...]]
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
3K