calc84.online
🌐
✨ AI Help
How-to6 min read

Matrices & rref on TI-84 — Solve Systems of Equations

How to enter matrices on the TI-84 Plus CE and use rref( to solve systems of equations. Includes matrix arithmetic, inverses, and determinants.

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 2nd x⁻¹ to open MATRIX

The menu has three tabs you'll move between constantly:

TabPurpose
NAMESPaste a matrix name like [A] onto the home screen
MATHMatrix operations: 1: det(, B: rref(, transpose, and more
EDITSet dimensions and type in entries

Step 1: Enter a matrix

  1. Press 2nd x⁻¹, arrow right to EDIT, choose 1: [A]
  2. Set the dimensions: rows × columns, pressing ENTER after each number
  3. Type each entry, pressing ENTER after 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:

  1. Press 2nd x⁻¹ → EDIT → 1: [A], set dimensions to 2 × 3
  2. Enter the entries: 2, 3, 7, 1, -1, 1 (press ENTER after each)
  3. Press 2nd MODE (QUIT) to return to the home screen
  4. Press 2nd x⁻¹ → arrow to MATH → scroll to B: rref(ENTER
  5. Press 2nd x⁻¹ → NAMES → 1: [A]ENTER
  6. Close the parenthesis with ) and press ENTER

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:

OperationKeystrokesNotes
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
DeterminantMATRIX → 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.

Practice on the free TI-84 calculator
Test these functions right now — no download required.
Open Calculator →

calc84.online is an independent educational practice tool. It is not made by, endorsed by, or affiliated with Texas Instruments Inc. TI-84, TI-84 Plus CE, and TI-30XS MultiView are trademarks of Texas Instruments. For official products, visit education.ti.com.