Hello I want to Plot the Series of Exp(x) about x=0 to order 12 but it returns an error when i use the function Plot.
res = Series[Exp[x], {x, 0, 10}];
Plot[res, {x, -3, 3}]
How can I do? Are there many ways to plot them? If yes, which are they ? Thanks a lot.
In[38]:= Plot[res, {x, -3, 3}] During evaluation of In[38]:= SeriesData::ssdn: Attempt to evaluate a series at the number -2.99988. Returning Indeterminate. >>
During evaluation of In[38]:= SeriesData::ssdn: Attempt to evaluate a series at the number -2.87743. Returning Indeterminate. >>
During evaluation of In[38]:= SeriesData::ssdn: Attempt to evaluate a series at the number -2.75498. Returning Indeterminate. >>
During evaluation of In[38]:= General::stop: Further output of SeriesData::ssdn will be suppressed during this calculation. >
– Robin Nov 05 '16 at 17:25Series, under Applications, you have examples showing how to deal with the output ofSeries, particularly how to plot it. – corey979 Nov 05 '16 at 17:31Returning Indeterminate. >> Further output of SeriesData::ssdn will be suppressed during this calculation. – Robin Nov 05 '16 at 17:33