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.