Prerequisites: Higher order derivatives
Goals: To become familiar with the concept of polynomials converging to a function. To conjecture the MacLaurin series for ex and cos(x) and the Taylor series for ln(x) centered at 1.
restart:with(plots): f:=x->___: expPlot1:=plot(exp(x),x=-3..3,y=-1..7,color=red): expPlot2:=plot(f(x),x=-3..3,y=-1..7,color=blue): display(expPlot1,expPlot2);
restart:with(plots): h:=x->___: logPlot1:=plot(ln(x),x=-1..3,y=-3..2,color=red): logPlot2:=plot(h(x),x=-1..3,y=-3..2,color=blue): display(logPlot1,logPlot2);