Derivative as Tangent
Clear[x,y,f]
x[t_]:=t
y[t_]:=t^2
f[t_]:={x[t],y[t]}
p1=ParametricPlot[f[t],{t,-5,5}];
f'[2]
p2=vectorPlot[{{0,0}},{f'[2]}];
Show[p1,p2];
As you can see, we do not have a tangent vector. But we will when we translate it to begin at the point on the curve.
p3=vectorPlot[{{0,0}+f[2]},{f'[2]+f[2]}];
Show[p1,p3,AspectRatio->Automatic];
Let's look at some more.
p5=vectorPlot[Table[f[i],{i,5}],Table[f[i]+f'[i],{i,5}]];
Show[p1,p5,AspectRatio->Automatic,PlotRange->{0,40}];Looking at this should also give you a good sense that tangent vectors approximate the graph. We make use of this when we define arclength of a curve as the "sum" of the lengths of the tangent vectors
PLEASE NOTE WHEN GRAPHING VECTORS:
Use the option AspectRatio->Automatic so that the lengths of the vectors
appear properly. When you do not, all the lengths look the same:
Show[p1,p5,PlotRange->{0,40}];