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

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.

Understanding Matrices & Determinants Reference

One useful way to understand a matrix is as a rule that changes a vector. A vector can describe a position, a direction, or a movement on a grid. A two by two matrix can stretch a shape, turn it, reflect it, or slant it.

To apply the rule, multiply the matrix by the vector. Each output entry comes from one row of the matrix working with the full input vector. This is why the row by column process matters.

It combines information from several input directions into one new direction. In computer graphics, these rules move points on a screen. In physics, they can describe changes between coordinate systems or the forces acting in several directions.

The determinant has a geometric meaning that helps the formula feel less like a memorized rule. For a two by two transformation matrix, the absolute value of the determinant tells how much areas are scaled. A determinant with magnitude three makes every area three times as large.

A determinant with magnitude one preserves area, even if the shape rotates or shears. A negative determinant means the transformation reverses orientation. It produces a mirror-like flip.

A zero determinant means a two-dimensional shape has been flattened into a line or a point. Information has been lost, so no reverse transformation can restore every original point. That is the deeper reason an inverse does not exist when the determinant is zero.

Matrices provide an organized method for solving simultaneous linear equations. The entries in the main part hold the coefficients of the variables, while an extra column can hold the constants. Row operations then change the system into a simpler but equivalent form.

Swapping two rows changes their order. Multiplying a row by a nonzero number changes its scale. Adding a multiple of one row to another removes terms.

These steps are the basis of elimination methods used in larger systems, where an inverse formula would be slow or unavailable. A system may have one solution, no solution, or infinitely many solutions.

A zero row can signal that one equation repeated information already given by another. A contradictory row signals that the equations cannot all be true at once.

Careful bookkeeping prevents most matrix errors. Write the dimensions beside matrices before beginning a calculation. For multiplication, check the inside dimensions first, then use the outside dimensions to predict the result size.

During each dot product, pair entries in matching positions and add the products only after all pairs are included. Keep row order and column order fixed. They carry meaning, such as different equations, variables, data categories, or coordinate directions.

When finding an inverse, verify the result by multiplying in both orders and checking for the identity matrix. In practical data work, a matrix may store test scores, sales records, pixel values, or connections in a network. The same size rules still apply because each row and column represents a specific kind of information.