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.


Compass 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.