The TI-84's matrix tools can solve a system of equations in under a minute — no substitution, no elimination by hand. This guide covers entering matrices, the rref( command for solving systems, and basic matrix arithmetic (add, multiply, inverse, determinant).
Finding the matrix menu
There is no key labeled MATRIX on the TI-84 Plus CE. The matrix menu lives above the x⁻¹ key:
- Press
2ndx⁻¹to open MATRIX
The menu has three tabs you'll move between constantly:
| Tab | Purpose |
|---|---|
| NAMES | Paste a matrix name like [A] onto the home screen |
| MATH | Matrix operations: 1: det(, B: rref(, transpose, and more |
| EDIT | Set dimensions and type in entries |
Step 1: Enter a matrix
- Press
2ndx⁻¹, arrow right to EDIT, choose1: [A] - Set the dimensions: rows × columns, pressing
ENTERafter each number - Type each entry, pressing
ENTERafter each — the cursor moves across each row, then down
Step 2: Solve a system with rref(
To solve a system, enter the augmented matrix: the coefficients plus one extra column for the constants. Two equations in two unknowns → a 2×3 matrix.
Worked example: Solve the system
2x + 3y = 7
x − y = 1
The augmented matrix is:
[ 2 3 7 ]
[ 1 -1 1 ]
Keystrokes:
- Press
2ndx⁻¹→ EDIT →1: [A], set dimensions to 2 × 3 - Enter the entries: 2, 3, 7, 1, -1, 1 (press
ENTERafter each) - Press
2ndMODE(QUIT) to return to the home screen - Press
2ndx⁻¹→ arrow to MATH → scroll toB: rref(→ENTER - Press
2ndx⁻¹→ NAMES →1: [A]→ENTER - Close the parenthesis with
)and pressENTER
Screen output:
rref([A])
[ 1 0 2 ]
[ 0 1 1 ]
Read the answer straight off the identity form: the first row says 1x + 0y = 2, the second says 0x + 1y = 1. So x = 2, y = 1. Check: 2(2) + 3(1) = 7 ✓ and 2 − 1 = 1 ✓.
The same method scales up: three equations in three unknowns → a 3×4 augmented matrix, and rref( returns x, y, and z in the last column.
Reading special cases
- A row of
[ 0 0 ... 0 | 1 ](all zeros equal to 1) means no solution — the system is inconsistent. - A row of all zeros means infinitely many solutions — you'll need to express the answer with a parameter.
Matrix arithmetic
Once matrices [A] and [B] are entered (via EDIT), paste their names from NAMES and combine them on the home screen:
| Operation | Keystrokes | Notes |
|---|---|---|
| Addition | [A] + [B] | Dimensions must match exactly |
| Multiplication | [A] * [B] | Columns of [A] must equal rows of [B]; order matters |
| Inverse | [A] then x⁻¹ | Square matrices only |
| Determinant | MATRIX → MATH → 1: det( then [A] | Square matrices only |
Example: for the coefficient matrix [C] = [[2, 3], [1, -1]] from the system above:
det([C])
-5
Since det([C]) = −5 ≠ 0, the matrix is invertible and the system has exactly one solution — which is why rref( produced a clean identity form. An alternative solve method is [C]⁻¹ * [D] where [D] is the 2×1 constants column; it returns the same x = 2, y = 1.
Common errors
- ERR:INVALID DIM — the dimensions don't fit the operation: adding a 2×3 to a 3×2, multiplying mismatched matrices, or calling rref( on a matrix with more rows than columns. Double-check every matrix's size under EDIT. Full walkthrough: /error-fixes/err-invalid-dim/.
- ERR:SINGULAR MAT — you tried to invert a matrix whose determinant is 0 (or solve with
[A]⁻¹when [A] is singular). Such a matrix has no inverse; the underlying system has no unique solution. Use rref( on the augmented matrix instead to see whether it's "no solution" or "infinitely many." - Editing the wrong matrix. If old homework data lives in [A], your rref( result will be nonsense. Always glance at the entries in EDIT before solving.
- Forgetting the constants column. rref( on just the coefficient matrix tells you nothing about the solution — the augmented column is what carries the answer.
Why rref beats the algebra
On the SAT and in precalculus, a 3-variable system that takes 5+ minutes by elimination takes about 60 seconds with rref( — and there's no arithmetic slip risk. The skill worth practicing is fast, accurate matrix entry, since that's where all the errors happen.
Practice right now
Open the free online TI-84 calculator — a complete TI-84 Plus CE in your browser, no download required — and solve the example system yourself. Enter the 2×3 augmented matrix, run rref([A]), and confirm the screen shows x = 2, y = 1. Then make up a 3×3 system and time yourself: under two minutes means you're exam-ready.