Question: How do I plot Euler and Runge Kutta plots on one graph with Maple?

I'm using the commands:

RungeKutta(d/dt(y(t))=-y(t),y(0)=1,t=1,submethod=rk4,output=plot,numsteps=10);

Euler(d/dt(y(t))=-y(t),y(0)=1,t=1,output=plot,numsteps=10);

Each of these commands yields its own serperate graph.  How can I plot both on graph to see how the approximations vary?

 

Thanks!

Please Wait...