Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

Matrices & Determinants Reference cheat sheet - grade 10-12

Click image to open full size

Math Grade 10-12

Matrices & Determinants Reference Cheat Sheet

A printable reference covering matrix dimensions, operations, multiplication, identity matrices, determinants, inverses, and linear systems for grades 10-12.

Download PNG

Matrices organize numbers into rows and columns so they can represent data, transformations, and systems of equations. This cheat sheet helps students remember the notation, rules, and formulas needed for common matrix and determinant problems. It is especially useful because matrix operations have strict size rules that are easy to mix up. A clear reference can prevent small notation mistakes from becoming wrong solutions. The main ideas include matrix order, addition, scalar multiplication, matrix multiplication, determinants, and inverses. For a 2×22 \times 2 matrix, the determinant formula is adbcad - bc, and it tells whether an inverse exists. Matrix multiplication uses row-by-column dot products, so in general ABBAAB \neq BA. Inverses can be used to solve matrix equations and linear systems when the determinant is not zero.

Key Facts

  • A matrix with mm rows and nn columns has order m×nm \times n.
  • Matrices can be added or subtracted only when they have the same order, so A+BA + B is defined only if both matrices are m×nm \times n.
  • Scalar multiplication means multiplying every entry by the same number, so if A=[aij]A = [a_{ij}], then kA=[kaij]kA = [ka_{ij}].
  • Matrix multiplication ABAB is defined only when the number of columns in AA equals the number of rows in BB.
  • If AA is m×nm \times n and BB is n×pn \times p, then ABAB has order m×pm \times p.
  • For A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, the determinant is det(A)=adbc\det(A) = ad - bc.
  • For A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix} with adbc0ad - bc \neq 0, the inverse is A1=1adbc[dbca]A^{-1} = \frac{1}{ad-bc}\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}.
  • A square matrix AA has an inverse only if det(A)0\det(A) \neq 0.

Vocabulary

Matrix
A matrix is a rectangular array of numbers arranged in rows and columns.
Entry
An entry is one value inside a matrix, often written as aija_{ij} for the entry in row ii and column jj.
Order
The order of a matrix describes its size as rows by columns, written m×nm \times n.
Determinant
The determinant is a number found from a square matrix that helps decide whether the matrix has an inverse.
Identity Matrix
An identity matrix is a square matrix with 11s on the main diagonal and 00s elsewhere, and it acts like the number 11 in multiplication.
Inverse Matrix
An inverse matrix A1A^{-1} is a matrix that satisfies AA1=A1A=IAA^{-1} = A^{-1}A = I.

Common Mistakes to Avoid

  • Adding matrices with different orders is wrong because matrix addition requires matching positions in matrices of the same size.
  • Multiplying corresponding entries to find ABAB is wrong because matrix multiplication uses row-by-column dot products, not entry-by-entry multiplication.
  • Assuming AB=BAAB = BA is wrong because matrix multiplication is usually not commutative and the two products may be different or not both defined.
  • Forgetting to check det(A)0\det(A) \neq 0 before finding A1A^{-1} is wrong because a matrix with determinant 00 has no inverse.
  • Using the inverse formula without switching aa and dd or changing the signs of bb and cc is wrong because A1=1adbc[dbca]A^{-1} = \frac{1}{ad-bc}\begin{bmatrix} d & -b \\ -c & a \end{bmatrix} for a 2×22 \times 2 matrix.

Practice Questions

  1. 1 Find A+BA + B for A=[2140]A = \begin{bmatrix} 2 & -1 \\ 4 & 0 \end{bmatrix} and B=[3527]B = \begin{bmatrix} 3 & 5 \\ -2 & 7 \end{bmatrix}.
  2. 2 Compute ABAB if A=[1234]A = \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} and B=[0512]B = \begin{bmatrix} 0 & 5 \\ -1 & 2 \end{bmatrix}.
  3. 3 Find det(A)\det(A) and decide whether A1A^{-1} exists for A=[6293]A = \begin{bmatrix} 6 & 2 \\ 9 & 3 \end{bmatrix}.
  4. 4 Explain why ABAB may be undefined even when both AA and BB are valid matrices.