
October 4th, 2011, 02:19 PM
|
|
n00b DevH'er
|
|
Join Date: Aug 2011
Posts: 8
Time spent in forums: 2 h 9 m 22 sec
Reputation Power: 0
|
|
|
Two Linear Equations Using Cramer's Rule - Program for TI-83 calculator
Hello everyone,
Here we present a program to solve the system:
Ax + By = C, Dx + Ey = F
Program for TI-83 calculator By Jonathan L. Moscovici
Using material from Weisstein, Eric W. "Cramer's Rule." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/CramersRule.html
=============================================
ClrHome
Disp "Solve"
Disp "AX + BY = C"
Disp "DX + EY = F“
Input “A:“ , A
Input “B:“ , B
Input “C:“ , C
Input “D:“ , D
Input “E:“ , E
Input “F:“ , F
( ( (BF)-(CE) ) / ( (BD)-(AE) ) ) → X
( ( (CD)-(AF) ) / ( (BD)-(AE) ) ) → Y
Disp “X:“ , X ►Frac
Disp “Y:“ , Y ►Frac
Pause
=============================================
Thank you for your interest,
If you have specific requests, please let us know; specifically, if you prefer the programs to be downloadable rather than the code being published, and whether you would like a user interface for those programs.
The previous code is also available as a PDF at
slideshare.net/Haulwind
|