Processing math: 100%
Skip to main content

Section 5.4 Examples

Subsection 5.4.1 Inverses of 2×2 matrices

There is a general formula for the inverse of a 2×2 formula:

A=[abcd]A1=1adbc[dbca].

The formula adbc in the denominator of the scalar multiple in this inverse formula is called the determinant of A. Clearly the formula does not work when the determinant of A is 0, since we cannot divide by zero. In fact, in Chapter 6 it will be possible for us to prove that A is not invertible when adbc=0. There are similar formulas for inverses of larger matrices, but they are too complicated to write down explicitly. We will study the general theory of determinants and related inversion formulas in Chapters 8–10.

Example 5.4.1. Using the 2×2 inversion formula.

Matrix A below is invertible, and its inverse is given. Watch for double negatives when computing adbc!

A=[5132]A1=1(5)(2)(1)(3)[2135]=17[2135]=[2/71/73/75/7].

Let's check that we have the correct inverse. To keep the computations simple, we'll leave the 1/7 as a scalar multiple when expressing A1.

A1A=(17[2135])[5132]AA1=[5132](17[2135])=17[2135][5132]=17[5132][2135]=17[10+32215+15310]=17[10+3556+6310]=17[7007]=17[7007]=[1001]=[1001]

So, we have both A1A=I and AA1=I, as required.

Example 5.4.2. Sometimes the 2×2 inversion formula does not apply.

Consider matrix

B=[3612].

For this matrix, we have

adbc=3261=66=0.

So even though none of the entries of B are 0, it is not invertible.

Subsection 5.4.2 Solving systems using inverses

Just as we can solve the numerical equation ax=b as x=a1b, we can solve a system of equations that is represented as a matrix equation Ax=b using A1.

Example 5.4.3.

Consider the system

{5x+y=3,3x+2y=2.

The coefficient matrix for this system is

A=[5132],

which is conveniently the matrix for which we have already computed the inverse using the 2×2 inversion formula in Subsection 5.4.1. So we can solve the system as

Ax=bx=A1b=(17[2135])[32]=17[2135][32]=17[819]=[8/719/7],

so that the system has one unique solution x=8/7, y=19/7.

Subsection 5.4.3 Solving other matrix equations using inverses

We can similarly use matrix algebra and inverses to solve matrix equations in general.

Example 5.4.4.

Consider the matrix equation

3[1112]+X[0321]=I.

Suppose we would like to solve this equation for the unknown 2×2 matrix X, where I is the 2×2 identity matrix.

One approach to this problem would be to express X in terms of unknown entries,

X=[abcd],

and then set up four equations in the four unknowns a,b,c,d. This would lead to a system of equations that we could row reduce and solve. But it's easier just to use ordinary (matrix) algebra. Set

W=[1112],Z=[0321],

substitute these definitions into the given equation, and isolate X algebraically:

3W+XZ=IXZ=I3WXZZ1=(I3W)Z1X=(I3W)Z1.

Of course, this method wouldn't work if Z was not invertible, but it is, and we can calculate

I3W=[1001]3[1112]Z1=101(3)2[1320]=[1001][3336]=16[1320].=[2335],

From this we obtain

X=(I3W)Z1=[2335](16[1320])=16[46139]=[2/3113/63/2].