More Graphs
With MenuMaple it is easy to graph in polar coordinates or work with parametric equations.
> plot([[3*sin(4*t),t,t=0..2*Pi],[2*cos(3*t),t,t=0..2*Pi],[2.5,t,t=0..2*Pi]],scaling=constrained,coords=polar,color=[red,blue,green],axes=none);
> plot([[t^3,t^2,t=-3..3],[t^2-10,4*t-3,t=-7..7],[16*sin(t),13*cos(t),t=0..2*Pi],[10-t^2,4*t-3,t=-7..7]],color=[red,blue,green,navy],scaling=constrained);
You can make a graph of f function and its inverse relation as well as make graphs related to simple iteration.
> invplot(x^2,x=-2..2);
Two views of the simple iteration x = exp(-3.*x) with 0.2 as initial value of x.
> PlotBoxIterates(exp(-3*x),x=0.2,50);
> PlotIterates(exp(-3*x),x=0.2,50);