Cramer’s Rule is a method in linear algebra used to solve systems of linear equations with the same number of equations and variables. It uses determinants of matrices to find the values of variables directly without substitution or elimination. The rule is applicable only when the coefficient matrix is square and has a non-zero determinant. Cramer’s Rule is particularly useful for solving small systems and is a foundational technique in mathematics and engineering.
1.0Cramer’s Rule Definition
In linear algebra, Cramer’s Rule is a powerful method used to solve systems of linear equations using determinants. It applies to square systems (number of equations = number of variables) and provides exact values for each variable without the need for elimination or substitution.
2.0What is Cramer’s Rule?
Cramer’s Rule is a technique that uses the determinant of matrices to solve a system of linear equations. It is applicable only when the coefficient matrix is square and has a non-zero determinant.
3.0What is the Cramer’s Rule Method?
The Cramer method involves replacing each column of the coefficient matrix with the constant matrix (RHS) and computing the determinant. Each variable is then found by:
xi= Determinant of coefficient matrix Determinant of matrix with column i replaced by RHS
4.0Cramer’s Rule Formula
For a system of equations:
a1x+b1y=c1a2x+b2y=c2
The determinant of the coefficient matrix:
D=a1a2b1b2=a1b2−a2b1
Replace the respective columns for each variable:
Dx=c1c2b1b2,
Dy=a1a2c1c2
Then,
Dx=DDx,y=DDy
This is the Cramer’s Rule formula for 2 variables.
5.0Why Use the Cramer Method?
It's a direct algebraic method.
Suitable for small systems (2 x 2 or 3 x 3).
No need for row operations or substitution.
Especially helpful in Maths and engineering problems with clear coefficient matrices.
6.0Applications of Cramer’s Rule
Linear algebra problems
Engineering circuits (KCL/KVL)
Economics (linear optimization)
Computer graphics (transformation matrices)
Solving simultaneous equations with exact coefficients
7.0Solved Examples on Cramer’s Rule
Example 1:
2x+3y=84x−y=2
Solution:
Step 1: Find D (Determinant of coefficient matrix)
D=243−1=(2)(−1)−(4)(3)=−2−12=−14
Step 2: Find D_x (Replace x-column with constants)
Dx=823−1=(8)(−1)−(2)(3)=−8−6=−14
Step 3: Find Dy (Replace y-column with constants)