∑TI-84 ProCalc

TI-84 Matrix Operations

Matrices without the headache. Enter, add, multiply, invert.

Matrices show up in Algebra 2 and pre-calculus, and the TI-84 handles the tedious arithmetic for you. Here is every operation, step by step.

The six core operations

  1. 1Open the matrix editor

    Press 2nd + x^-1 (the MATRIX key). Arrow right to EDIT, then press ENTER on [A]. Type the number of rows, press ENTER, type the number of columns, press ENTER.

  2. 2Type in your numbers

    Enter each value and press ENTER after it. The cursor moves through the matrix automatically. When every slot is filled, press 2nd + MODE (QUIT) to go back to the home screen.

  3. 3Add or subtract matrices

    Press 2nd + x^-1, choose NAMES, and select [A]. Type +, then select [B] the same way. Press ENTER. Both matrices must have the same dimensions, or you will get a DIM MISMATCH error.

  4. 4Multiply matrices

    Select [A], type ×, select [B], and press ENTER. Remember the rule: the number of columns in [A] must equal the number of rows in [B]. A 2×3 times a 3×2 gives a 2×2 result.

  5. 5Find an inverse

    Select [A], then press the x^-1 key (not 2nd — just x^-1). Press ENTER. This computes A^-1, which only exists for square matrices with a non-zero determinant.

  6. 6Find a determinant

    Press 2nd + x^-1, arrow to MATH, and choose det(. Then select [A], close the parenthesis, and press ENTER. A determinant of zero means the matrix has no inverse.

Errors you will meet (and what they mean)

DIM MISMATCH

The #1 matrix error. Your dimensions do not line up for the operation. Double-check the sizes: addition needs identical dimensions, multiplication needs columns-of-first = rows-of-second.

SINGULAR MATRIX

You asked for an inverse that does not exist. The determinant is zero, which means the matrix is singular. In a system of equations, this usually means no unique solution — check your original problem.

INVALID DIM

You tried to create a matrix with zero rows or columns, or referenced a matrix that was never defined. Re-enter the matrix in the editor and try again.

The system-of-equations shortcut

This is why matrices matter. A system like 2x + 3y = 8 and x − y = 1 becomes [A]×[X] = [B]. Enter the coefficient matrix as [A] and the constants as [B], then compute [A]^-1 × [B]. The answer pops out — no substitution slog.

Want to visualize systems instead? Our graphing guide shows how to find solutions where two graphs intersect.

Frequently asked questions

Last updated: September 26, 2026