Determinants and Their Properties

Calculation of matrix determinants
The determinant is a single number you can compute from any square matrix. It tells you whether the matrix is invertible and shows up directly in Cramer's Rule, so you need to be comfortable calculating it.
2ร2 determinant:
For the matrix , the determinant is:
Multiply the main diagonal, then subtract the product of the off-diagonal. That's it.
3ร3 determinant:
For the matrix , the determinant is:
This is called cofactor expansion along the first row. Here's how to do it step by step:
-
Take the first element , cross out its row and column, and find the 2ร2 determinant of what's left: . Multiply by .
-
Take the second element , cross out its row and column, and find the 2ร2 determinant: . Multiply by (note the sign change).
-
Take the third element , cross out its row and column, and find the 2ร2 determinant: . Multiply by .
-
Add the three results together.
The sign pattern along the first row alternates: . This pattern extends for larger matrices too.
You may also see the Rule of Sarrus for 3ร3 matrices: copy the first two columns to the right of the matrix, then add the products of the three downward diagonals and subtract the products of the three upward diagonals. It gives the same answer but only works for 3ร3.
Properties of determinants
These properties are worth knowing because they can save you computation time and help you check your work:
- Row/column swap: Interchanging any two rows (or columns) flips the sign of the determinant.
- Scalar multiplication: Multiplying a single row or column by multiplies the determinant by .
- Row addition: Adding a multiple of one row to another row does not change the determinant.
- Transpose: The determinant of a matrix equals the determinant of its transpose.
- Product rule: .
- Invertibility: A matrix is invertible if and only if its determinant is non-zero. If the determinant is zero, the matrix is singular.
Solving Systems with Cramer's Rule
Cramer's Rule gives you a direct formula for each variable in a system of linear equations, expressed entirely in terms of determinants. The core idea: replace one column of the coefficient matrix with the constants from the right-hand side, take that determinant, and divide by the determinant of the original coefficient matrix.

Application of Cramer's Rule
For a 2ร2 system :
Let (the determinant of the coefficient matrix).
and
Notice the pattern: to solve for , replace the x-column (first column) with the constants. To solve for , replace the y-column (second column) with the constants. The denominator is always .
For a 3ร3 system :
The same pattern holds. Let .
, , and
Step-by-step process for any system:
- Write the coefficient matrix and compute its determinant .
- Check that . If , Cramer's Rule doesn't apply (the system is either inconsistent or has infinitely many solutions).
- For each variable, form a new matrix by replacing that variable's column in the coefficient matrix with the column of constants.
- Compute the determinant of each new matrix.
- Divide each new determinant by to get the value of that variable.
Quick example (2ร2): Solve
Cramer's Rule vs other methods
- Cramer's Rule works well for 2ร2 and 3ร3 systems, especially on exams where you need a quick, formulaic approach.
- For larger systems, the number of determinant calculations grows very fast (factorially), making Gaussian elimination or matrix inversion far more practical.
- One nice advantage: if you only need the value of one variable, you can compute just two determinants instead of solving the entire system.
Real-world interpretation of solutions
The solution to a system represents the set of values that satisfy all equations at once. Depending on context, these values might represent:
- Intersection points of lines or planes in geometry
- Equilibrium forces or velocities in physics
- Prices or quantities that balance supply and demand in economics

Systems of Equations and Their Properties
Types of systems
- Consistent system: Has at least one solution. If there's exactly one solution, it's called independent. If there are infinitely many, it's dependent.
- Inconsistent system: Has no solution. Graphically, this means the lines (or planes) never all intersect at a common point.
For Cramer's Rule specifically: the system has a unique solution when . When , you can't use Cramer's Rule, and you'll need another method to determine whether the system is inconsistent or dependent.
Matrix representation
Any system of linear equations can be written in matrix form as , where:
- is the coefficient matrix (the grid of coefficients from the left-hand side)
- is the column vector of variables
- is the column vector of constants from the right-hand side
The augmented matrix combines both into one matrix, which is what you'd use for Gaussian elimination. For Cramer's Rule, you work with and separately.