Determinants of 2-by-2 Square Matrices
The determinant of a [latex]2\times 2[/latex] 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 [latex]2\times 2[/latex] matrix
Key Takeaways
Key Points
- The determinant of a [latex]2 \times 2[/latex] matrix [latex]\begin{bmatrix}a&b\\c&d\end{bmatrix}[/latex] is defined to be [latex]ad-bc[/latex].
- 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 “[latex]\det[/latex]“.
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 [latex]n[/latex]-dimensional volumes of [latex]n[/latex]-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 [latex][A][/latex] is denoted [latex]\det(A)[/latex], [latex]\det\ A[/latex], or [latex]\left | A \right |[/latex]. 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 [latex]\begin{bmatrix} a & b \\ d & e \end{bmatrix}[/latex] is written [latex]\begin{vmatrix} a & b \\ d & e \end{vmatrix}[/latex].
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 [latex]2 \times 2[/latex] matrix, [latex]\begin{bmatrix} a & b\\ c & d \end{bmatrix}[/latex],
the determinant [latex]\begin{vmatrix} a & b\\ c & d \end{vmatrix}[/latex] is defined to be [latex]ad-bc[/latex].
Example 1: Find the determinant of the following matrix:
[latex]\displaystyle \begin{bmatrix} 4 & -2 \\ 7 & 5 \end{bmatrix}[/latex]
The determinant [latex]\begin{vmatrix} 4 & -2\\ 7 & 5 \end{vmatrix}[/latex] is:
[latex]\displaystyle \begin{align} (4 \cdot 5) - (-2 \cdot 7)&= 20 - (-14)\\ &=34 \end{align}[/latex]
Cofactors, Minors, and Further Determinants
The cofactor of an entry [latex](i,j)[/latex] of a matrix [latex]A[/latex] is the signed minor of that matrix.
Learning Objectives
Explain how to use minor and cofactor matrices to calculate determinants
Key Takeaways
Key Points
- Let [latex]A[/latex] be an [latex]m \times n[/latex] matrix and [latex]k[/latex] an integer with [latex]0
- The first minor of a matrix [latex]M_{ij}[/latex] is formed by removing the [latex]i[/latex]th row and [latex]j[/latex]th column of the matrix, and retrieving the determinant of the smaller matrix.
- The cofactor of an element [latex]a_{ij}[/latex] of a matrix [latex]A[/latex], written as [latex]C_{ij}[/latex] is defined as [latex](-1)^{i+j}M_{ij}[/latex].
Key Terms
- cofactor: The signed minor of an entry of a matrix.
- minor: The determinant of some smaller square matrix, cut down from matrix [latex]A[/latex] 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 [latex](i,j)[/latex] entry of a matrix, also known as the [latex](i,j)[/latex] cofactor of that matrix, is the signed minor of that entry.
The cofactor of [latex]a_{ij}[/latex] entry of a matrix is defined as:
[latex]\displaystyle C_{ij}=(-1)^{i+j}M_{ij}[/latex]
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 [latex]A[/latex] is the determinant of some smaller square matrix, cut down from [latex]A[/latex] 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 [latex]A[/latex] be an [latex]m \times n[/latex] matrix and [latex]k[/latex] an integer with [latex]0 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. The following steps are used to find the determinant of a given minor of a matrix A: [latex]M_{ij}[/latex] is termed the minor for entry [latex]a_{ij}[/latex]. Note: If [latex]i+j[/latex] is an even number, the cofactor coincides with its minor: [latex]C_{ij}=M_{ij}[/latex]. Otherwise, it is equal to the additive inverse of its minor: [latex]C_{ij}=-M_{ij}[/latex] 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. [latex]\displaystyle \begin{bmatrix} 1 & 4 & 7\\ 3 & 0 & 5\\ -1& 9 &11\\ \end{bmatrix}[/latex] As an example, we will calculate the determinant of the minor [latex]M_{23}[/latex], which is the determinant of the [latex]2 \times 2[/latex] matrix formed by removing the [latex]2[/latex]nd row and [latex]3[/latex]rd column. A black dot represents an element we are removing. [latex]\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}[/latex] Since [latex]i+j=5[/latex] is an odd number, the cofactor is the additive inverse of its minor: [latex]-(13)=-13[/latex] We multiply this number by [latex]a_{23}=5[/latex], giving [latex]-65[/latex]. The same process is carried out to find the determinants of [latex]C_{13}[/latex] and [latex]C_{33}[/latex], which are then multiplied by [latex]a_{13}[/latex] and [latex]a_{33}[/latex], respectively. The determinant is then found by summing all of these: [latex]\begin {align} \det{A} &= a_{13}\det{C_{13}}+a_{23}\det{C_{23}}+a_{33}\det{C_{33}} \\ &= 7\cdot27-5\cdot13+11\cdot-12 \\&=-8 \end{align}[/latex] Cramer’s Rule uses determinants to solve for a solution to the equation [latex]Ax=b[/latex], when [latex]A[/latex] is a square matrix. Use Cramer’s Rule to solve for a single variable in a system of linear equations “Cramer’s Rule” is another way to solve a system of linear equations with matrices. It uses a formula to calculate the solution to the system utilizing the definition of determinants. Cramer’s Rule is an explicit formula for the solution of a system of linear equations with as many equations as unknowns, i.e. a square matrix, valid whenever the system has a unique solution. It expresses the solution in terms of the determinants of the (square) coefficient matrix and of matrices obtained from it by replacing one column by the vector of right hand sides of the equations. Consider the linear system: [latex]\displaystyle \begin{bmatrix}a&b\\c&d\end{bmatrix} \begin{bmatrix}x\\y\end{bmatrix}=\begin{bmatrix}{\color{Red}e}\\{\color{Red}f}\end{bmatrix}[/latex] Assume the determinant is non-zero. Then, [latex]x[/latex] and [latex]y[/latex] can be found by Cramer’s rule: [latex]\displaystyle x=\frac{\begin{vmatrix}{\color{Red}e}&b\\{\color{Red}f}&d\end{vmatrix}}{\begin{vmatrix}a&b\\c&d\end{vmatrix}}=\frac{{\color{Red}e}d-b{\color{Red}f}}{ad-bc}[/latex] And: [latex]\displaystyle y=\frac{\begin{vmatrix}a&{\color{Red}e}\\c&{\color{Red}f}\end{vmatrix}}{\begin{vmatrix}a&b\\c&d\end{vmatrix}}=\frac{a{\color{Red}f}-{\color{Red}e}c}{ad-bc}[/latex] Given: [latex]\displaystyle \begin{bmatrix}a&b&c\\d&e&f\\g&h&i\end{bmatrix} \begin{bmatrix}x\\y\\z\end{bmatrix}=\begin{bmatrix}{\color{Red}j}\\{\color{Red}k}\\{\color{Red}l}\end{bmatrix}[/latex] Then the values of [latex]x[/latex], [latex]y[/latex] and [latex]z[/latex] can be found as follows: [latex]\displaystyle x=\frac{\begin{vmatrix}{\color{Red}j}&b&c\\{\color{Red}k}&e&f\\{\color{Red}l}&h&i\end{vmatrix}}{\begin{vmatrix}a&b&c\\d&e&f\\g&h&i\end{vmatrix}} \quad y=\frac{\begin{vmatrix}a&{\color{Red}j}&c\\d&{\color{Red}k}&f\\g&{\color{Red}l}&i\end{vmatrix}}{\begin{vmatrix}a&b&c\\d&e&f\\g&h&i\end{vmatrix}} \quad z=\frac{\begin{vmatrix}a&b&{\color{Red}j}\\d&e&{\color{Red}k}\\g&h&{\color{Red}l}\end{vmatrix}}{\begin{vmatrix}a&b&c\\d&e&f\\g&h&i\end{vmatrix}}[/latex] [latex]\displaystyle \left\{\begin{matrix} 3x+2y & = 10\\ -6x+4y & = 4 \end{matrix}\right.[/latex] In matrix format: [latex]\displaystyle \begin{bmatrix}3&2\\-6&4\end{bmatrix} \begin{bmatrix}x\\y\end{bmatrix}=\begin{bmatrix}10\\4\end{bmatrix}[/latex] [latex]\displaystyle \begin{align} x&=\frac{\begin{vmatrix}{\color{Red}e}&b\\{\color{Red}f}&d\end{vmatrix}}{\begin{vmatrix}a&b\\c&d\end{vmatrix}}\\&=\frac{{\color{Red}e}d-b{\color{Red}f}}{ad-bc}\end{align}[/latex] [latex]\displaystyle \begin{align} x&=\frac{\begin{vmatrix}10&2\\4&4\end{vmatrix}}{\begin{vmatrix}3&2\\-6&4\end{vmatrix}}\\&=\frac{10\cdot 4-2 \cdot 4}{(3 \cdot 4) -[2 \cdot (-6)]}\\&=\frac{32}{24}=\frac{4}{3}\end{align}[/latex] [latex]\displaystyle \begin{align} y&=\frac{\begin{vmatrix}a&{\color{Red}e}\\c&{\color{Red}f}\end{vmatrix}}{\begin{vmatrix}a&b\\c&d\end{vmatrix}}\\ &=\frac{a{\color{Red}f}-{\color{Red}e}c}{ad-bc} \end{align}[/latex] [latex]\displaystyle \begin{align} y&=\frac{\begin{vmatrix}3&10\\-6&4\end{vmatrix}}{\begin{vmatrix}3&2\\-6&4\end{vmatrix}}\\ &=\frac{(3 \cdot 4)-[10 \cdot(-6)]}{(3 \cdot 4)-[2 \cdot (-6)]}\\ &=\frac{72}{24}=3 \end{align}[/latex] The solution to the system is [latex](\frac{4}{3}, 3)[/latex].Calculating the Minors
Calculating the Determinant
Cramer’s Rule
Learning Objectives
Key Takeaways
Key Points
Key Terms
Cramer’s Rule: Definition
Cramer’s Rule: Formula
Rules for a [latex]2\times 2[/latex] Matrix
Rules for a [latex]3 \times 3[/latex] Matrix
Using Cramer’s Rule
Example 1: Solve the system using Cramer’s Rule: