Heun Method - Mathematica Implementation Part 2
Numerical Methods for Solving Differential Equations
Heun's Method
Mathematica Implementation
(continued fromÌýlast page...)
We will test ourÌýheunÌýprogram by having it create numerical solutions to the same differential equations that we solved using our Euler program in the last lab. Recall that the command-syntax used with your Euler program for this task was:
euler[f,{x,x0,xn},{y,y0},steps]
so for your new program, (since we made no changes to the input format when we adapted it to the Heun method, other than its name,) you would use a command of the form:
heun[f,{x,x0,xn},{y,y0},steps]
Of course, for such a command to work you must have evaluated yourÌýheunÌýprogram during your current session with theÌýMathematicaÌýkernel! Use it 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.
Ìý