Help: Improved Euler Algorithm

The Improved Euler (or Heun) algorithm for the differential equation Y' = f(X,Y) (where X is the independent variable) is
            
            y1 = Y(X) + h f(X,Y(X))
            Y(X+h) = Y(X) + h/2 (f(X,Y(X)) + f(X+h,y1))
The step size is
            
             h = (XF - XI)/N 
where XI is the initial value of X, XF the final value and N the number of steps, as set in the Main Menu.
Euler
Fourth Order Runge-Kutta
Adaptive Runge-Kutta
Difference equation
Main window
Help index