Determinants and Cramer's Rule
Determinants of 2-by-2 Square Matrices
The determinant of a square matrix is a mathematical construct used in problem solving that is found by a special formula.Learning Objectives
Practice finding the determinant of a matrixKey Takeaways
Key Points
- The determinant of a matrix is defined to be .
- A matrix is often used to represent the coefficients in a system of linear equations, and the determinant can be used to solve those equations.
- Any matrix has a unique inverse if its determinant is nonzero.
Key Terms
- determinant: The unique scalar function over square matrices which is distributive over matrix multiplication, multilinear in the rows and columns, and takes the value of 1 for the unit matrix. Its abbreviation is "".
What is a determinant?
A matrix is often used to represent the coefficients in a system of linear equations, and the determinant can be used to solve those equations. The use of determinants in calculus includes the Jacobian determinant in the change of variables rule for integrals of functions of several variables. Determinants are also used to define the characteristic polynomial of a matrix, which is essential for eigenvalue problems in linear algebra. In analytical geometry, determinants express the signed -dimensional volumes of -dimensional parallelepipeds. Sometimes, determinants are used merely as a compact notation for expressions that would otherwise be unwieldy to write down. It can be proven that any matrix has a unique inverse if its determinant is nonzero. Various other theorems can be proved as well, including that the determinant of a product of matrices is always equal to the product of determinants; and, the determinant of a Hermitian matrix is always real. The determinant of a matrix is denoted , , or . In the case where the matrix entries are written out in full, the determinant is denoted by surrounding the matrix entries by vertical bars instead of the brackets or parentheses of the matrix. For instance, the determinant of the matrix is written .Determinant of a 2-by-2 Matrix
In linear algebra, the determinant is a value associated with a square matrix. It can be computed from the entries of the matrix by a specific arithmetic expression, shown below: For a matrix, , the determinant is defined to be .Example 1: Find the determinant of the following matrix:
The determinant is: \displaystyle \begin{align} (4 \cdot 5) - (-2 \cdot 7)&= 20 - (-14)\\ &=34 \end{align}
Cofactors, Minors, and Further Determinants
The cofactor of an entry of a matrix is the signed minor of that matrix.Learning Objectives
Explain how to use minor and cofactor matrices to calculate determinantsKey Takeaways
Key Points
- Let be an matrix and an integer with , and . A minor of is the determinant of a matrix obtained from by deleting rows and columns.
- The first minor of a matrix is formed by removing the th row and th column of the matrix, and retrieving the determinant of the smaller matrix.
- The cofactor of an element of a matrix , written as is defined as .
Key Terms
- cofactor: The signed minor of an entry of a matrix.
- minor: The determinant of some smaller square matrix, cut down from matrix by removing one or more of its rows or columns.
Cofactor and Minor: Definitions
Cofactor
In linear algebra, the cofactor (sometimes called adjunct) describes a particular construction that is useful for calculating both the determinant and inverse of square matrices. Specifically the cofactor of the entry of a matrix, also known as the cofactor of that matrix, is the signed minor of that entry. The cofactor of entry of a matrix is defined as:Minor
To know what the signed minor is, we need to know what the minor of a matrix is. In linear algebra, a minor of a matrix is the determinant of some smaller square matrix, cut down from by removing one or more of its rows or columns. Minors obtained by removing just one row and one column from square matrices (first minors) are required for calculating matrix cofactors. Let be an matrix and an integer with , and . A minor of is the determinant of a matrix obtained from by deleting rows and columns.Calculate the Determinant
The determinant of any matrix can be found using its signed minors. The determinant is the sum of the signed minors of any row or column of the matrix scaled by the elements in that row or column.Calculating the Minors
The following steps are used to find the determinant of a given minor of a matrix A:- Choose an entry from the matrix.
- Cross out the entries that lie in the corresponding row and column .
- Rewrite the matrix without the marked entries.
- Obtain the determinant of this new matrix.
Calculating the Determinant
We will find the determinant of the following matrix A by calculating the determinants of its cofactors for the third, rightmost column and then multiplying them by the elements of that column. As an example, we will calculate the determinant of the minor , which is the determinant of the matrix formed by removing the nd row and rd column. A black dot represents an element we are removing. \displaystyle \begin{align} \begin{vmatrix} 1 & 4 & \bullet\\ \bullet& \bullet& \bullet\\ -1& 9 &\bullet \end{vmatrix} &= \begin{vmatrix} 1 & 4\\ -1&9 \end{vmatrix}\\ &=(9-(-4))\\&=13 \end{align} Since is an odd number, the cofactor is the additive inverse of its minor: We multiply this number by , giving . The same process is carried out to find the determinants of and , which are then multiplied by and , respectively. The determinant is then found by summing all of these:Cramer's Rule
Cramer's Rule uses determinants to solve for a solution to the equation , when is a square matrix.Learning Objectives
Use Cramer's Rule to solve for a single variable in a system of linear equationsKey Takeaways
Key Points
- Cramer's Rule only works on square matrices that have a non-zero determinant and a unique solution.
- Consider the linear system , which in matrix format is . Assume the determinant is non-zero. Then, and and be found by Cramer's rule: and .
- Cramer's Rule is efficient for solving small systems and can be calculated quite quickly; however, as the system grows, calculating the new determinants can be tedious.
Key Terms
- determinant: The unique scalar function over square matrices which is distributive over matrix multiplication, multilinear in the rows and columns, and takes the value of for the unit matrix. Its abbreviation is "".
- square matrix: A matrix having the same number of rows as columns.