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}]
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.