home *** CD-ROM | disk | FTP | other *** search
/ ticalc.org / ticalc_org_rev_b.iso / archives / 81 / basic / math / solver81.81 < prev    next >
Encoding:
Text File  |  2001-07-01  |  1.6 KB  |  52 lines

  1. SOLVER:Ti-81 by Michael Harmon Oct.  1994
  2.  
  3. Disc:  The TI-81 Solver allows you to solve an equation for one unknown
  4. variable.
  5.  
  6.  USING SOLVER81: I have tried to make this program very simple to use.
  7. Prior to executing the program, you must enter the the two sides of the
  8. equation into the Y1= and Y2= functions.  EX: 2x+3=x+4,  Y1=2X+3 , Y2=X+4.
  9. After entering the equations execute the program to solve.  Feel free to
  10. distribute this program.  I am open to comments/suggestions/complaints my
  11. Internet address is:
  12.                             Valjean943@aol.com
  13.  
  14. Enjoy  :)
  15.  
  16.  
  17. Version 1.2  (c)1994
  18.  
  19. :PRGM:SOLVER
  20. : ClrStat
  21. : 2 -> X
  22. : Y1 -> A
  23. : 3 -> X
  24. : Y1  -> B
  25. : 2 -> {X}(1)
  26. : 3 -> {X}(2)
  27. : A -> {Y}(1)
  28. : B -> {Y}(2)
  29. : LinReg
  30. : b -> S
  31. : a -> I
  32. : 2 -> X
  33. : Y2 -> A
  34. : 3 -> X
  35. : Y2 -> B
  36. : A -> {Y}(1)
  37. : B -> {Y}(2)
  38. : If {Y}(1)={Y}(2)
  39. : Goto 0
  40. : LinReg
  41. : S-b -> S
  42. : a-I -> I
  43. : I/S -> X
  44. : Lbl 1
  45. : ClrHome
  46. : Disp "X= "
  47. : Disp X
  48. : Stop
  49. : Lbl 0
  50. : (A-I)/S -> X
  51. : Goto 1                                                                                                        ,   Ç   ½     ¡                 ê    ú    Ñ    ░    ▓    ┤    ╩    ╠    ┌    σ    ∩    ·                   .    =    L    V    `    j    t        ë    ö    ú    ▓    ╞    ╨    ┌    τ    ≤                    !    +    3    <    L    Y    [        ë    ö    ú    ▓    ╞    ╨    ┌    τ    ≤                     Arial   VER81: I have tried to make this program very simple to use.  Prior to executing the program, you must enter the th
  52.