EULER

TI 82

-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 and step size. Solutions can be superimposed on a slopefield by running the Slopefield program first. Previous graphs are not cleared.


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 2ed then RED



The pause command in the program allow you to see the solution in segments. Use ENTER to continue, ON to quit.
An expression for f(x,y) must also be entered in Y1 before running this program. For x use X,T,q. For Y use ALPHA then Y.


:FnOff  {FnOff is found with Y-VARS(VARS) in the ON/OFF Menu} 
:Disp "INITIAL X"  {Disp is found with PRGM in the I/O Menu} 
:Input X  {Input is found with PRGM in the I/O Menu} 
:Disp "INITIAL Y" 
:Input Y 
:Disp "STEP SIZE" 
:Input H 
:Lbl 1  {Lbl if found with PRGM in the CTL Menu} 
:0$\to$ {The 0 is a zero}{The arrow is STO
:Lbl 2 
:X+H$\to$
:Y+Y1*H$\to$ {Y1 is found with Y-VARS(VARS)} 
:Line(X,Y,U,V)  {Line is found in DRAW(PRGM) in the Draw Menu} 
:U$\to$
:V$\to$
:IS>(C,20)  {IS> is found with PRGM in the CTL Menu} 
:Goto 2  {Goto is found with PRGM in the CTL Menu} 
:Pause  {Pause is found with PRGM in the CTL Menu} 
:Goto 1