Euler Method - Using the Method with Mathematica - Part 7
Numerical Methods for Solving Differential Equations
Euler's Method
Using the Method with Mathematica
(continued from last page...)
Instructions for the Exercises
Once again it's time to have you attempt to do some work on your own. The examples that we've already done together should have sufficiently prepared you to tackle these problems. As you work through them, don't cheat yourself by first skipping forward and looking at the solutions. After all, you are supposed to be doing these exercises to enhance your learning, and to prepare yourself for the laboratory exam that you'll take later.
Some of these exercises may be solved exactly using the techniques that you have already learned in the lecture component of this course. If you're feeling ambitious, you might attempt to find the exact solutions to the exercises, where this is possible, and then use these solutions to help you gauge how good the corresponding numerical solutions are, just as we did back in the Introduction.
Use the euler program:
euler[f_,{x_,x0_,xn_},{y_,y0_},steps_]:=
Block[{ xold=x0,
yold=y0,
sollist={{x0,y0}},
x,y,h
},
h=N[(xn-x0)/steps];
Do[ xnew=xold+h;
ynew=yold+h*(f/.{x->xold,y->yold});
sollist=Append[sollist,{xnew,ynew}];
xold=xnew;
yold=ynew,
steps
];
Return[sollist]
]
that you entered into Mathematica earlier, to solve each of the initial value problems given in the table below. For each exercise, do the following:
Find the numerical solution, in the form of a list, on the x-interval spanning from the initial condition point up to the specified x-value.
Read this solution list into the solution name specified for the exercise.
Use the number of steps specified.
Redisplay your solution in tidy columns with a command of the form MatrixForm[Solution Name], inserting the appropriate name for the exercise inside the brackets.
Plot your solution using a command of the form ListPlot[Solution Name], inserting the appropriate name for the exercise inside the brackets.
Check your solution and its graph by clicking on the Mathematica Answer button provided. (Only do this once you've tried the problem yourself.)
Exercises
If you've finished the above exercises, then you may either return to the beginning of this laboratory, jump to the Table of Contents of all of the differential equations laboratories, or simply quit.