12/25/2023
9 min read

Matrices package several linear equations into one rectangular array. Calculators label rows and columns so you can reuse elimination steps without rewriting entire equations.
Addition and subtraction require identical shapes—combine matching positions only. Scalar multiplication scales every entry. **Matrix multiplication** composes linear maps: entry (i,j) sums products across row i of the left factor and column j of the right factor, demanding compatible inner dimensions. Row-reduction moves toward echelon form using swaps, scaling a row, or adding multiples—exactly the manual Gaussian steps encoded compactly.
For C = AB, size(A)=m×k and size(B)=k×n yields C with size m×n. Row operations preserve solution sets for augmented matrices built from Ax = b.
Solving two equations in two unknowns: write the augmented matrix, eliminate below pivots, back-substitute. A calculator matrix mode records intermediate matrices so arithmetic errors surface immediately.
Start from the Basic Calculator for arithmetic checks on matrix entries, then verify row operations manually or with your curriculum’s matrix tool. Always confirm matrix dimensions before multiplying—inner indices must match.
Usually not—matrix multiplication is non-commutative. Dimensions may even forbid BA when AB exists.
Conceptually to solve Ax = b as x = A⁻¹b when A is square and invertible; numerically, stable solvers often avoid explicit inverses.
© 2026 PromathTools. All rights reserved.
Developed by kruskalcode.com