Hi
I need to plot \sin(x) and its first,third, fifth power series expansion on the same
plot. here's what I did
T[n_,x_]:=Normal[Series[Sin[x], {x, 0, n}]]
Plot[{Sin[x], T[1, x], T[3, x], T[5, x]}, {x, -2, 2}]
But I got following errors.
General::ivar: -1.99992 is not a valid...