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 matrix, the determinant formula is , and it tells whether an inverse exists. Matrix multiplication uses row-by-column dot products, so in general .
Inverses can be used to solve matrix equations and linear systems when the determinant is not zero.
Key Facts
- A matrix with rows and columns has order .
- Matrices can be added or subtracted only when they have the same order, so is defined only if both matrices are .
- Scalar multiplication means multiplying every entry by the same number, so if , then .
- Matrix multiplication is defined only when the number of columns in equals the number of rows in .
- If is and is , then has order .
- For , the determinant is .
- For with , the inverse is .
- A square matrix has an inverse only if .
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 for the entry in row and column .
- Order
- The order of a matrix describes its size as rows by columns, written .
- 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 s on the main diagonal and s elsewhere, and it acts like the number in multiplication.
- Inverse Matrix
- An inverse matrix is a matrix that satisfies .
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 is wrong because matrix multiplication uses row-by-column dot products, not entry-by-entry multiplication.
- Assuming is wrong because matrix multiplication is usually not commutative and the two products may be different or not both defined.
- Forgetting to check before finding is wrong because a matrix with determinant has no inverse.
- Using the inverse formula without switching and or changing the signs of and is wrong because for a matrix.
Practice Questions
- 1 Find for and .
- 2 Compute if and .
- 3 Find and decide whether exists for .
- 4 Explain why may be undefined even when both and 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.