Runge-Kutta Method - Mathematica Implementation Part 3

Numerical Methods for Solving Differential Equations

The Runge-Kutta Method

Mathematica Implementation

(continued from last page...)

We will test our RK4 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 Runge-Kutta method, other than its name,) you would use a command of the form:

RK4[f,{x,x0,xn},{y,y0},steps]

Of course, for such a command to work you must have evaluated your RK4 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:

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

  2. Read this solution list into the solution name specified for the exercise.

  3. Use the number of steps specified.

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

  5. Plot your solution using a command of the form ListPlot[Solution Name], inserting the appropriate name for the exercise inside the brackets.

  6. Check your solution and its graph by clicking on the question mark button provided. (Only do this once you've tried the problem yourself.)

Exercises

Solution
Name
Differential
Equation
Initial
Condition
Solve
up to
Number
of Steps
Check
Solution
rkex1 y′ = y y(0) = 1 x = 1 10 Mathematica Logo
rkex2 y′ = x - y y(0) = 0.5 x = 1 20 Mathematica Logo
rkex3 y′ = x2 + 1/y2 y(5) = 1 x = 6 30 Mathematica Logo
rkex4 y′ = (x - y)2 y(0) = 0.5 x = 0.5 20 Mathematica Logo
rkex5 y′ = xy + y1/2 y(0) = 1 x = 1 20 Mathematica Logo

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.


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.