Finding the coefficients of a Taylor polynomial

Click For Summary
SUMMARY

The discussion focuses on finding the coefficients of the Taylor polynomial of degree two for the function z(x,y) around the point (0,0) using Python. The equation x + 2y + z + e^(2z) - 1 = 0 is central to the problem. Participants suggest using the SymPy library for symbolic differentiation, which facilitates the calculation of partial derivatives necessary for determining the Taylor coefficients.

PREREQUISITES
  • Understanding of Taylor polynomials and their coefficients
  • Familiarity with symbolic differentiation
  • Knowledge of the SymPy library in Python
  • Basic calculus concepts, including partial derivatives
NEXT STEPS
  • Explore the SymPy documentation on symbolic differentiation
  • Learn how to implement Taylor series expansions in Python
  • Study the application of partial derivatives in multivariable calculus
  • Investigate the use of numerical methods for approximating Taylor polynomials
USEFUL FOR

Mathematicians, data scientists, and Python developers interested in polynomial approximations and symbolic computation.

schniefen
Messages
177
Reaction score
4
TL;DR
Consider the equation ##x+2y+z+e^{2z}-1=0##. Find the cocoefficients of the Taylor polynomial of degree two of the function ##z(x,y)## about the point ##(0,0)##.
To find the coefficients of the Taylor polynomial of degree two of the function ##z(x,y)## around the point ##(0,0)##, what would be a handy way of doing that in python? How would one find the derivatives of ##z(x,y)##?
 
Technology news on Phys.org
schniefen said:
Summary: Consider the equation ##x+2y+z+e^{2z}-1=0##. Find the cocoefficients of the Taylor polynomial of degree two of the function ##z(x,y)## about the point ##(0,0)##.

To find the coefficients of the Taylor polynomial of degree two of the function ##z(x,y)## around the point ##(0,0)##, what would be a handy way of doing that in python? How would one find the derivatives of ##z(x,y)##?
SimPy will do symbolic differentiation, including partial derivatives. See https://docs.sympy.org/latest/tutorial/calculus.html
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 4 ·
Replies
4
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K