Skip to Main Content

Linear Algebra

Inverse by Cofactors

If AMn×n(R) is invertible, then (A1)ij=1|A|Cji. Cji is known as the adjugate of A.

The adjugate, adj(A), is the matrix of cofactors,

Example: Determine the adjugate and inverse of A=[241031625]

Solution: The nine cofactors are

C11=(1)|3125|=17 C12=(1)|0165|=6 C13=(1)|0362|=18
C21=(1)|4125|=18 C22=(1)|2165|=16 C23=(1)|2462|=28
C31=(1)|4141|=7 C32=(1)|2101|=2 C33=(1)|2403|=6

adj(A)=[C11C12C13C21C22C23C31C32C33]=[17187616218286]

We can verify by cofactors that the determinant |A|=76. Therefore, we can calculate the inverse

A1=1|A|adj(A)=176[17187616218286]

Cramer's Rule

We can apply Cramer's rule to solve a system of linear equations in n variables, Ax¯=b¯. If |A|0 so that A is invertible. Let Ni be the matrix obtained from A by replacing the i-th column of A by b¯. Then the i-th component of x¯ in the solution of Ax¯=b¯ is

xi=|Ni||A|

The matrix Ni is defined by replacing b¯ by the column i.

For example, if 

A=[321013240]x¯=[x1x2x3]b¯=[421]

Then in N1, b¯ will replace column 1

N1=[421213140]

In N2, b¯ will replace column 2

N2=[341023210]

In N3, b¯ will replace column 3

N3=[324012241]


Example: Solve the following system of equations using Cramer's Rule

7x+y4z=36x4y+z=04xy2z=6

Solution

A=[714641412]b¯=[306]

To solve for variable x, we need to find the matrix Nx by replacing the x or 1st column with b¯

Nx=[314041612]

We repeat to find Ny and Nz

Ny=[734601462]

Nz=[713640416]

Now we apply Cramer's Rule

x=|Nx||A|=6333=2111y=|Ny||A|=7833=2611z=|Nz||A|=6633=2

The solutions check out when plugging them back into each equation.

Creative Commons License
Designed by Matthew Cheung. This work is licensed under a Creative Commons Attribution 4.0 International License.