I'm trying to get Plot within my Manipulate to evaluate, but I keep getting error messages:
F[x_]:= Cos[x]
Manipulate[
Plot[
Sum[
( ( D[ F[x], {x, k} ] /. x -> (π/6) )/k! ) * (x - (π/6) )^k ,
{k, 1, terms}
],
{x, -3 π, 3 π}
],
{terms, 1, 100, 1}
]
It's supposed to be a taylor series that I can manipulate. Help is appreciated!
Edit: I'm very new to Mathematica, so I would appreciate, if you explained everything in a very simplified manner!

Manipulate[ Plot[Sum[((D[F[xx], {xx, k}] /. xx -> (\[Pi]/6))/k!)*(x - (\[Pi]/6))^ k, {k, 1, terms}], {x, -3 \[Pi], 3 \[Pi]}], {terms, 1, 100, 1}]– jjc385 Apr 13 '17 at 03:25Plot, e.g.With[{fcn = Sum[((D[F[x], {x, k}] /. x -> (\[Pi]/6))/k!)*(x - (\[Pi]/6))^k, {k,1, terms}]}, Plot[fcn, {x, -3 \[Pi], 3 \[Pi]}] ]. – rcollyer Apr 13 '17 at 03:26Evaluate[]:Manipulate[Plot[Evaluate @ Sum[(* stuff *)], (* stuff *)], (* stuff *)]