E-mail Webmaster
_______________ Navigation
Home ________________ TI Graphing Calculators TI Programs Brief User Guides Casio Graphing Calculator Casio Programs Casio Programming
Keystrokes Scientific Calculators =============== Casio Calculadoras
Breve Guía Español Calculadoras Científicos
|
INTERACTIVE MATRIX ROW OPERATIONS FOR TI CALCULATORS This program does individual row operations on matrices. It can be used exactly as entered for either the TI-82 or TI-83. This program and its companion program for the Casio Cfx-9850 Plus were written as aids in teaching students the method of doing Gauss and Gauss-Jordan elimination without the confusion of two different calculators and without getting students bogged down in arithmetic. The student selects the type of row operation from a menu and then tells the calculator what multiplier and/or what rows are involved. The calculator displays the matrix with the completed operations. The matrix must be entered into position A, but the working matrix is B. What's new in V1.1? I have included a menu item, #5, that allows multiplying two rows by a constant and then adding the rows. This is convenient for avoiding fractions. In V1.0, this could be done by using the multiply, *row(, and the *row+ functions in sequence, but most students seemed not to recognize that. I had to eliminate QUIT because Menu only supports seven items. No big deal; you can always quit the program by pressing OFF. I have also changed the working matrix from A to B, but the data is still entered into matrix A. Finally, as a housekeeping routine, I have entered the coding so that the labels are in numerical order. NOTE: Every single move is not entered in the code entry instructions, e.g., when you are in 2nd MATRIX #9; and STO or ALPHA is the next step, naturally you must 2nd QUIT from the matrix menu. In the entry instructions, semicolons are used as separators and commas are as entered in the program. If there's any confusion, just enter all of the commas in the coding. I'm offering this program for free in exchange for any suggestions you may have to make the coding more efficient or the instructions clearer. DISCLAIMER: This program is free, and, therefore, I make no claims about it's efficacy, efficiency, or proper operation. If you find a problem with this program, or can suggest an improvement, please e-mail me at knosummath@aol.com . Use of this Program: You may use this program freely for your own personal use and for the use of other students, but use for publication or any means of profit requires my permission. Memory Usage: This version of the program uses 417 bytes of memory. I estimate it will take an inexperienced programmer about 20 minutes to enter by hand. HELP: At the end of this coding is a matrix with row operations for you to check to see if everything is working okay.
NOTE: We're not going to try to develop any clever strategy on this matrix. To minimize error propagation, we're are going to try to avoid fractions as long as possible. The format for my "shorthand" instructions will be this order; menu item number,
first multiplier, first row, second multiplier, second row. If you get mixed up, start over by using menu item 5. That'll restore the original matrix in [A]. If you re-execute the program, your partially solved matrix will be transferred to [B] and you'll lose the original matrix. Alternatively, from the beginning, you could enter the matrix in [C]; then transfer it to [A] using these commands from the home screen: 2nd, MATRIX, 3, STO, 1. Then if you get mixed up you can start over just by transferring from [C] to [A] again.
Here's an example problem: Enter this matrix in [A]: [ 2 1 -2 |1] (Read the instructions down the left side; then down the right.)
Revised: 10/2/04 |