HELP TOPIC: Solving Simultaneous Equations with the TI 89 & 92 Calculators
Example 1 2 EQ, 2 UK
x + 2y = 1 EQ1
3x + 4y = -1 EQ2
Solution Method 1 "Solve"
x = -3 and y = 2
* note 1: TI 89 (and likely the TI 92 PLUS). The procedure is more involved on the older TI 92:
On the TI 92 press F2 Algebra & select 1:solve( then ENTER. solve( will appear on the command line. Continue typing, adding to the command line so that it looks like this (without the quotes): "solve(x+2*y=1,y)". After entering the display will show your command line entry and its solution (rewritten here on one line): y = -(x-1)/2 . Repeat the procedure to solve the second equation so the new command line looks like this (without the quotes): "solve(3*x+4*y=-1,y)". After entering the display will show your command line entry and its solution (rewritten here on one line): y = -(3*x+1))/4. Next type the following on a new command line (without the quotes): "solve(-(x-1)/2=-(3*x+1)/4,x)". After entering the display will show your command line entry and its solution: x=-3 . Finally type the following on a new command line (without the quotes): "solve(x+2*y=1|x=-3,y)". After entering the display will show your command line entry and its solution: y=2 . You could also have typed on the last new command line (without the quotes): "solve(3*x+4*y=-1|x=-3,y)". This will also produce the solution y=2 . One final note: you can save typing time by moving the 4-way joy button to select items from the display to paste into your command line at the cursor. Remember also that pressing F2 Algebra & selecting 1:solve( then ENTER will place "solve(" (without the quotes) on a new command line.
Solution Method 2 "Simult"
simult([coefficients matrix],[column vector of constants])
and to the right side of the display
[column vector of the solution]. For this problem the solution
vector (written here as a row vector) is [-3 2]. We interpret
this as x = -3 and y = 2 .
Example 2 3 EQ, 3 UK
25x 20y 0z = 10 EQ1
-20x + 45y 15z = -15 EQ2
-0x - 15y + 40z = -7 EQ3
Solution Method - "simult" (NOTE: Must use this for more
than 2 UK on all three TI models discussed here)
The display will show a "stacked" version of the command line of the following form:
simult([coefficients matrix],[column vector of constants])
and to the right side of the display
[column vector of the solution]. For this problem the solution
vector (written here as a row vector) is [-6/85 -7/17
28/85]. If we press the "green" key and then
ENTER we get the numerical result (written here as a row vector)
is [.070588 -.411765 -.329412]. We interpret this as x = .070588,
y = -.411765, and z = -.329412 .