开发者

taylor approximation using mathematica [closed]

开发者 https://www.devze.com 2023-03-03 22:26 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. 开发者_如何学编程 Closed 10 years ago.

For a homework assignment:

Given the Taylor expansion for Exp[x/3]

write y[x]= Summation( n>=0 ) ( (a subscript n) * x^n ) .

Solve for the coefficients (a subscript n) up to order 10.


CoefficientList[Series[Exp[x/3], {x, 0, 10}], x]

==> {1, 1/3, 1/18, 1/162, 1/1944, 1/29160, 1/524880, 1/11022480, \
1/264539520, 1/7142567040, 1/214277011200}


(a[#]=SeriesCoefficient[Exp[x/3],{x,0,#}])&/@Range[0,10];??a


googling for mathematica power series

http://reference.wolfram.com/mathematica/tutorial/PowerSeries.html

You will find Mathematica's help very thorough. You can access it from the Help menu, or by evaluating the following expression:

?Series

(or whatever you're interesting in the help for)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号