Numerical Solutions with Euler's Method ( dsolve,numeric )

We can also use this command to use a specified computational procedure. Most of these that are numerical (there are plenty of "symbolic" methods as well) require you to tell Maple how large the change in the independent variable should be (" stepsize "). So far the only method we know is Euler's, known to Maple as the "forward" Euler method from its " classical " collection. The main thing to investigate here is how the accuracy of the solution (and the time of computation) is affected by the stepsize. Let's recall what we are working with.

> MODEL;

> IC;

> VAR;

> DOMAIN;

>

Method # 1 - Euler (a custom-defined procedure for our uses)

Method #2 - dsolve,numeric and odeplot (built-in Maple commands)

Notes:

>