2

I need to plot Maclaurin Series for some functions. I tried to define the series like:

series1 = Series[Exp[x], {x, 0, 6}]

and tried to plot it

Plot[series1, {x, 0, 5}]

and also use Normal function, like:

Plot[Normal[series1], {x, 0, 5}]

but unfortunately none of the above worked. How can I do it?

m_goldberg
  • 107,779
  • 16
  • 103
  • 257

1 Answers1

2
Plot[Evaluate @ Normal[series1], {x, 0, 5}]

enter image description here

kglr
  • 394,356
  • 18
  • 477
  • 896