Euler Method - Mathematica Implementation Part 2

Numerical Methods for Solving Differential Equations

Euler's Method

Using the Method withÌýMathematica

(continued fromÌýlast page...)

Your very firstÌýMathematicaÌýprogramming session should have gone something like this:

Print["Hello!"];
powerlist=Table[w^k, {k,3,8}];
Print["Look at my list of powers --> ",powerlist];
Do[Print["That was cool!"], {i,5}]


Output

If you didn't get this result, you should probably go back and carefully check your input. Well, enough of the silly "do-nothing" programming. Let'sÌýgo and tackleÌýthe real issue here...the Euler Method Program.


If you're lost, impatient, want an overview of this laboratory assignment, or maybe even all three, you can click on the compass button on the left to go to the table of contents for this laboratory assignment.