The function is f[x] := xsin(ax),the first derivative is f'[x]=axcos(ax) + sin(ax)and third derivative is f'''[x]=-(a^3)xcos(ax) - (3a^2)sin(ax).I tried to plot them all in the same graph but I just get a blank graph with the axes. How do I graph them?
So far,I tried using the Show command to get them in a single plot but mathematica says it can't plot them together. For example, to plot them together I put f(x), Derv1,Derv3 inside Show(). I also tried using Manipulate option but when I use it for f(x),f'(x) and f'''(x) altogether I get errors. What else can I do that works?

a? – flinty Jul 15 '20 at 22:23{}button above the edit window. The edit window help button?is useful for learning how to format your questions and answers. You may also find this meta Q&A helpful – Michael E2 Jul 15 '20 at 22:27Clear["Global\*"]; f[a_][x_] := x Sin[a x]; With[{a = 2}, Plot[Evaluate@{f[a][x], f[a]'[x], f[a]''[x]}, {x, 0, 2 Pi}, PlotLegends -> "Expressions"]]` – Bob Hanlon Jul 15 '20 at 22:37Clear["Global\*"]; f[a_, x_] := x Sin[a x]; With[{a = 2}, Plot[Evaluate@{f[a, x], D[f[a, x], x], D[f[a, x], {x, 2}]}, {x, 0, 2 Pi}, PlotLegends -> "Expressions"]]` – Bob Hanlon Jul 15 '20 at 22:50