Ask Your Question

yktula's profile - activity

2015-06-12 22:31:55 +0100 received badge  Famous Question (source)
2014-12-06 20:48:04 +0100 received badge  Notable Question (source)
2013-11-17 22:52:46 +0100 received badge  Popular Question (source)
2013-02-07 19:13:46 +0100 marked best answer Multivariate Taylor Series

You can do the following:

f(x,y)=sin(x)*y
taylor(f(x,y),(x,pi),(y,2),4)

or

f.taylor((x,pi),(y,2),4)
2013-02-07 19:13:46 +0100 received badge  Scholar (source)
2013-02-07 19:13:35 +0100 commented answer Multivariate Taylor Series

I'm not sure what mistake I was making; it seems so obvious. Thank you so much!

2013-02-07 19:12:34 +0100 received badge  Supporter (source)
2013-02-07 18:14:14 +0100 received badge  Editor (source)
2013-02-07 18:13:48 +0100 asked a question Multivariate Taylor Series

Hi. I know f.taylor(x, x_0, n) would generate an n-order Taylor approximation of f around x_0 for a function of a single variable. How can I do this for multiple variables? I know Maxima can handle it. How do I do this in sage?