Processing math: 100%
Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Mathematics LibreTexts

3.1: Basic Techniques

( \newcommand{\kernel}{\mathrm{null}\,}\)

Cofactors and 2 x 2 Determinants

Outcomes
  1. Evaluate the determinant of a square matrix using either Laplace Expansion or row operations.
  2. Demonstrate the effects that row operations have on determinants.
  3. Verify the following:
    1. The determinant of a product of matrices is the product of the determinants.
    2. The determinant of a matrix is equal to the determinant of its transpose.

Let A be an n×n matrix. That is, let A be a square matrix. The determinant of A, denoted by det(A) is a very important number which we will explore throughout this section.

If A is a 2×2 matrix, the determinant is given by the following formula.

Definition 3.1.1: Determinant of a Two By Two Matrix

Let A=[abcd]. Then det(A)=adcb

The determinant is also often denoted by enclosing the matrix with two vertical lines. Thus det[abcd]=|abcd|=adbc

The following is an example of finding the determinant of a 2×2 matrix.

Example 3.1.1: A Two by Two Determinant

Find det(A) for the matrix A=[2416].

Solution

From Definition 3.1.1, det(A)=(2)(6)(1)(4)=12+4=16

The 2×2 determinant can be used to find the determinant of larger matrices. We will now explore how to find the determinant of a 3×3 matrix, using several tools including the 2×2 determinant.

We begin with the following definition.

Definition 3.1.2: The ijth Minor of a Matrix

Let A be a 3×3 matrix. The ijth minor of A, denoted as minor(A)ij, is the determinant of the 2×2 matrix which results from deleting the ith row and the jth column of A.

In general, if A is an n×n matrix, then the ijth minor of A is the determinant of the n1×n1 matrix which results from deleting the ith row and the jth column of A.

Hence, there is a minor associated with each entry of A. Consider the following example which demonstrates this definition.

Example 3.1.2: Finding Minors of a Matrix

Let A=[123432321] Find minor(A)12 and minor(A)23.

Solution

First we will find minor(A)12. By Definition 3.1.2, this is the determinant of the 2×2 matrix which results when you delete the first row and the second column. This minor is given by minor(A)12=det[4231] Using Definition 3.1.1, we see that det[4231]=(4)(1)(3)(2)=46=2

Therefore minor(A)12=2.

Similarly, minor(A)23 is the determinant of the 2×2 matrix which results when you delete the second row and the third column. This minor is therefore minor(A)23=det[1232]=4 Finding the other minors of A is left as an exercise.

The ijth minor of a matrix A is used in another important definition, given next.

Definition 3.1.3: The ijth Cofactor of a Matrix

Suppose A is an n×n matrix. The ijth cofactor, denoted by cof(A)ij is defined to be cof(A)ij=(1)i+jminor(A)ij

It is also convenient to refer to the cofactor of an entry of a matrix as follows. If aij is the ijth entry of the matrix, then its cofactor is just cof(A)ij.

Example 3.1.3: Finding Cofactors of a Matrix

Consider the matrix A=[123432321] Find cof(A)12 and cof(A)23.

Solution

We will use Definition 3.1.3 to compute these cofactors.

First, we will compute cof(A)12. Therefore, we need to find minor(A)12. This is the determinant of the 2×2 matrix which results when you delete the first row and the second column. Thus minor(A)12 is given by det[4231]=2 Then, cof(A)12=(1)1+2minor(A)12=(1)1+2(2)=2 Hence, cof(A)12=2.

Similarly, we can find cof(A)23. First, find minor(A)23, which is the determinant of the 2×2 matrix which results when you delete the second row and the third column. This minor is therefore det[1232]=4 Hence, cof(A)23=(1)2+3minor(A)23=(1)2+3(4)=4

You may wish to find the remaining cofactors for the above matrix. Remember that there is a cofactor for every entry in the matrix.

We have now established the tools we need to find the determinant of a 3×3 matrix.

Definition 3.1.4: The Determinant of a Three By Three Matrix

Let A be a 3×3 matrix. Then, det(A) is calculated by picking a row (or column) and taking the product of each entry in that row (column) with its cofactor and adding these products together.

This process when applied to the ith row (column) is known as expanding along the ith row (column) as is given by det(A)=ai1cof(A)i1+ai2cof(A)i2+ai3cof(A)i3

When calculating the determinant, you can choose to expand any row or any column. Regardless of your choice, you will always get the same number which is the determinant of the matrix A. This method of evaluating a determinant by expanding along a row or a column is called Laplace Expansion or Cofactor Expansion.

Consider the following example.

Example 3.1.4: Finding the Determinant of a Three by Three Matrix

Let A=[123432321] Find det(A) using the method of Laplace Expansion.

Solution

First, we will calculate det(A) by expanding along the first column. Using Definition 3.1.4, we take the 1 in the first column and multiply it by its cofactor, 1(1)1+1|3221|=(1)(1)(1)=1 Similarly, we take the 4 in the first column and multiply it by its cofactor, as well as with the 3 in the first column. Finally, we add these numbers together, as given in the following equation. det(A)=1cof(A)11(1)1+1|3221|+4cof(A)21(1)2+1|2321|+3cof(A)31(1)3+1|2332| Calculating each of these, we obtain det(A)=1(1)(1)+4(1)(4)+3(1)(5)=1+16+15=0 Hence, det(A)=0.

As mentioned in Definition 3.1.4, we can choose to expand along any row or column. Let’s try now by expanding along the second row. Here, we take the 4 in the second row and multiply it to its cofactor, then add this to the 3 in the second row multiplied by its cofactor, and the 2 in the second row multiplied by its cofactor. The calculation is as follows. det(A)=4cof(A)21(1)2+1|2321|+3cof(A)22(1)2+2|1331|+2cof(A)23(1)2+3|1232|

Calculating each of these products, we obtain det(A)=4(1)(2)+3(1)(8)+2(1)(4)=0

You can see that for both methods, we obtained det(A)=0.

As mentioned above, we will always come up with the same value for det(A) regardless of the row or column we choose to expand along. You should try to compute the above determinant by expanding along other rows and columns. This is a good way to check your work, because you should come up with the same number each time!

We present this idea formally in the following theorem.

Theorem 3.1.1: The Determinant is Well Defined

Expanding the n×n matrix along any row or column always gives the same answer, which is the determinant.

We have now looked at the determinant of 2×2 and 3×3 matrices. It turns out that the method used to calculate the determinant of a 3×3 matrix can be used to calculate the determinant of any sized matrix. Notice that Definition 3.1.2, Definition 3.1.3 and Definition 3.1.4 can all be applied to a matrix of any size.

For example, the ijth minor of a 4×4 matrix is the determinant of the 3×3 matrix you obtain when you delete the ith row and the jth column. Just as with the 3×3 determinant, we can compute the determinant of a 4×4 matrix by Laplace Expansion, along any row or column

Consider the following example.

Example 3.1.5: Determinant of a Four by Four Matrix

Find det(A) where A=[1234542313453432]

Solution

As in the case of a 3×3 matrix, you can expand this along any row or column. Lets pick the third column. Then, using Laplace Expansion, det(A)=3(1)1+3|543135342|+2(1)2+3|124135342|+ 4(1)3+3|124543342|+3(1)4+3|124543135|

Now, you can calculate each 3×3 determinant using Laplace Expansion, as we did above. You should complete these as an exercise and verify that det(A)=12.

The following provides a formal definition for the determinant of an n×n matrix. You may wish to take a moment and consider the above definitions for 2×2 and 3×3 determinants in context of this definition.

Definition 3.1.5: The Determinant of an n×n Matrix

Let A be an n×n matrix where n2 and suppose the determinant of an (n1)×(n1) has been defined. Then det(A)=nj=1aijcof(A)ij=ni=1aijcof(A)ij The first formula consists of expanding the determinant along the ith row and the second expands the determinant along the jth column.

In the following sections, we will explore some important properties and characteristics of the determinant.

The Determinant of a Triangular Matrix

There is a certain type of matrix for which finding the determinant is a very simple procedure. Consider the following definition.

Definition 3.1.6: Triangular Matrices

A matrix A is upper triangular if aij=0 whenever i>j. Thus the entries of such a matrix below the main diagonal equal 0, as shown. Here, refers to any nonzero number. [000] A lower triangular matrix is defined similarly as a matrix for which all entries above the main diagonal are equal to zero.

The following theorem provides a useful way to calculate the determinant of a triangular matrix.

Theorem 3.1.2: Determinant of a Triangular Matrix

Let A be an upper or lower triangular matrix. Then det(A) is obtained by taking the product of the entries on the main diagonal.

The verification of this Theorem can be done by computing the determinant using Laplace Expansion along the first row or column.

Consider the following example.

Example 3.1.6: Determinant of a Triangular Matrix

Let A=[12377026700333.70001] Find det(A).

Solution

From Theorem 3.1.2, it suffices to take the product of the elements on the main diagonal. Thus det(A)=1×2×3×(1)=6.

Without using Theorem 3.1.2, you could use Laplace Expansion. We will expand along the first column. This gives det(A)=1|2670333.7001|+0(1)2+1|23770333.7001|+0(1)3+1|2377267001|+0(1)4+1|23772670333.7| and the only nonzero term in the expansion is 1|2670333.7001| Now find the determinant of this 3×3 matrix, by expanding along the first column to obtain det(A)=1×(2×|333.701|+0(1)2+1|6701|+0(1)3+1|67333.7|) =1×2×|333.701| Next use Definition 3.1.1 to find the determinant of this 2×2 matrix, which is just 3×10×33.7=3. Putting all these steps together, we have det(A)=1×2×3×(1)=6 which is just the product of the entries down the main diagonal of the original matrix!

You can see that while both methods result in the same answer, Theorem 3.1.2 provides a much quicker method.

In the next section, we explore some important properties of determinants.


This page titled 3.1: Basic Techniques is shared under a CC BY-NC-SA 4.0 license and was authored, remixed, and/or curated by Ken Kuttler (Lyryx) via source content that was edited to the style and standards of the LibreTexts platform.

Support Center

How can we help?