Roman C. answered 05/10/16
Tutor
5.0
(859)
Masters of Education Graduate with Mathematics Expertise
Cramer's rule is a Theorem that gives the solution to any system of n linear equations with n unknowns.
Let's say you have a system of equations:
ak1x1 + ak2x2 + … + aknxn = bk
for k = 1,…,n.
We can write this in matrix form as Ax=b where
A = [aij] is an n×n square matrix.
b = [bi] and x = [xj] are n-dimensional column vectors.
Cramer's rule says that if you let Ai be the matrix formed by replacing the ith column of A with the vector b, and if det(A)≠ 0 then the unique solution to the system is:
xi = det(Ai) / det(A).
Cramer's rule can also be used to get some info when det(A) = 0.
In this special case, if det(Ai) = 0 for all i=1,…,n, then there are infinitely many solutions. Otherwise there are no solutions.