EULER

Casio 9800 or 9850


-This program plots an approximate solution for the differential equation ${\hbox{dy}\over \hbox{dx}}=\hbox{f(x,y)}$ using Euler's method. The program will ask for initial point, step size and the number of iterations to be plotted. Solutions can be superimposed on a slopefield by running the Slopefield program first. Previous are not cleared. Store f(x,y) as you would for graphing using the first position only.


Note: Information in {} is not put into the calculator. Information in RED denotes a button on the calculator.

Note: Information like BLUE(RED) means to access BLUE hit SHIFT then RED



'EULER'

"INITIAL X"? $\to$ X

"INITIAL Y"? $\to$ Y

"STEP SIZE"? $\to$ H

"NO. OF ITERATIONS"? $\to$ N

Lbl 1

X+H $\to$ U

Y+Y1 H $\to$ V

Plot X,Y

Plot U,V

Line

U $\to$ X

V $\to$ Y

Dsz N

Goto 1

{' is found with ALPHA in the SYM menu.}

{" is found with ALPHA in the SYM menu.}{? is found with PRGM(7)}{$\to$ is (')}

{Lbl is found with PRGM(7) in the JMP menu.}

{Y1 symbol is obtained by hitting VAR(6), chossing Y in the GPH menu, then 1}

{Plot is found with SHIFT it is listed as PLT}

{Line is found with SHIFT it is listed as LIN}

{Dsz is found with PRGM(7) in the JMP}

{Goto is found with PRGM(7) in the JMP menu it is listed as Gto}