<< Chapter < Page Chapter >> Page >

Solve the following system of equations.

x + 2y 3z = 5 size 12{x+2y - 3z=5} {}
2x + 4y 6z = 10 size 12{2x+4y - 6z="10"} {}
3x + 6y 9z = 15 size 12{3x+6y - 9z="15"} {}

The reduced row-echelon form is given below.

1 2 3 5 0 0 0 0 0 0 0 0 size 12{ left [ matrix { 1 {} # 2 {} # - 3 {} # \lline {} # 5 {} ##0 {} # 0 {} # 0 {} # \lline {} # 0 {} ## 0 {} # 0 {} # 0 {} # \lline {} # 0{}} right ]} {}

This time the last two equations drop out, and we are left with one equation and three variables. Again, there are infinite number of solutions. But this time the answer must be expressed in terms of two arbitrary constants.

If we let z = t size 12{z=t} {} and let y = s size 12{y=s} {} , then the first equation x + 2y 3z = 5 size 12{x+2y - 3z=5} {} results in x = 5 2s + 3t size 12{x=5 - 2s+3t} {} .

We rewrite the solution as: x = 5 2s + 3t size 12{x=5 - 2s+3t} {} , y = s size 12{y=s} {} , z = t size 12{z=t} {} .

Got questions? Get instant answers now!
Got questions? Get instant answers now!

We summarize our discussion in the following table.

  1. If any row of the reduced row-echelon form of the matrix gives a false statement such as 0 = 1, the system is inconsistent and has no solution.
  2. If the reduced row echelon form has fewer equations than the variables and the system is consistent, then the system has an infinite number of solutions. Remember the rows that contain all zeros are dropped.
    1. If a system has an infinite number of solutions, the solution must be expressed in the parametric form.
    2. The number of arbitrary parameters equals the number of variables minus the number of equations.

Inverse matrices

Section overview

In this section you will learn to:

  1. Find the inverse of a matrix, if it exists.
  2. Use inverses to solve linear systems.

In this section, we will learn to find the inverse of a matrix, if it exists. Later, we will use matrix inverses to solve linear systems.

Definition of an Inverse: An n × n size 12{n times n} {} matrix has an inverse if there exists a matrix B size 12{B} {} such that AB = BA = I n size 12{ ital "AB"= ital "BA"=I rSub { size 8{n} } } {} , where I n size 12{I rSub { size 8{n} } } {} is an n × n size 12{n times n} {} identity matrix. The inverse of a matrix A size 12{A} {} , if it exists, is denoted by the symbol A 1 size 12{A rSup { size 8{ - 1} } } {} .

Given matrices A size 12{A} {} and B size 12{B} {} below, verify that they are inverses.

A = 4 1 3 1 size 12{A= left [ matrix { 4 {} # 1 {} ##3 {} # 1{} } right ]} {} B = 1 1 3 4 size 12{B= left [ matrix { 1 {} # - 1 {} ##- 3 {} # 4{} } right ]} {}

The matrices are inverses if the product AB size 12{ ital "AB"} {} and BA size 12{ ital "BA"} {} both equal I 2 , the identity matrix of dimension 2 × 2 size 12{2 times 2} {} .

AB = 4 1 3 1 1 1 3 4 = 1 0 0 1 size 12{ ital "AB"= left [ matrix { 4 {} # 1 {} ##3 {} # 1{} } right ]left [ matrix { 1 {} # - 1 {} ##- 3 {} # 4{} } right ]= left [ matrix { 1 {} # 0 {} ##0 {} # 1{} } right ]} {} and       BA = 1 1 3 4 4 1 3 1 = 1 0 0 1 size 12{ ital "BA"= left [ matrix { 1 {} # - 1 {} ##- 3 {} # 4{} } right ]left [ matrix { 4 {} # 1 {} ##3 {} # 1{} } right ]= left [ matrix { 1 {} # 0 {} ##0 {} # 1{} } right ]} {}

Clearly that is the case; therefore, the matrices A and B are inverses of each other.

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Find the inverse of the following matrix.

A = 3 1 5 2 size 12{A= left [ matrix { 3 {} # 1 {} ##5 {} # 2{} } right ]} {}

Suppose A size 12{A} {} has an inverse, and it is

B = a b c d size 12{A= left [ matrix { 3 {} # 1 {} ##5 {} # 2{} } right ]} {}

Then A B = I

3 1 5 2 a b c d = 1 0 0 1 size 12{ left [ matrix { 3 {} # 1 {} ##5 {} # 2{} } right ]left [ matrix { a {} # b {} ##c {} # d{} } right ]= left [ matrix { 1 {} # 0 {} ##0 {} # 1{} } right ]} {}

After multiplying the two matrices on the left side, we get

3a + c 3b + 6 5a + 2c 5b + 2d = 1 0 0 1 size 12{ left [ matrix { 3a+c {} # 3b+6 {} ##5a+2c {} # 5b+2d{} } right ]= left [ matrix { 1 {} # 0 {} ##0 {} # 1{} } right ]} {}

Equating the corresponding entries, we get four equations with four unknowns as follows:

3a + c = 1 size 12{3a+c=1} {}      3b + d = 0 size 12{3b+d=0} {}
5a + 2c = 0 size 12{5a+2c=0} {}       5b + 2d = 1 size 12{5b+2d=1} {}

Solving this system, we get

a = 2 size 12{a=2} {}      b = 1 size 12{b= - 1} {}      c = 5 size 12{c= - 5} {}      d = 3 size 12{d=3} {}

Therefore, the inverse of the matrix A size 12{A} {} is

2 1 5 3 size 12{ left [ matrix { 2 {} # - 1 {} ##- 5 {} # 3{} } right ]} {}

In this problem, finding the inverse of matrix A size 12{A} {} amounted to solving the system of equations:

3a + c = 1 size 12{3a+c=1} {}       3b + d = 0 size 12{3b+d=0} {}
5a + 2c = 0 size 12{5a+2c=0} {}       5b + 2d = 1 size 12{5b+2d=1} {}

Actually, it can be written as two systems, one with variables a size 12{a} {} and c size 12{c} {} , and the other with b and d size 12{d} {} . The augmented matrices for both are given below.

3 1 1 5 2 0 size 12{ left [ matrix { 3 {} # 1 {} # \lline {} # 0 {} ##5 {} # 2 {} # \lline {} # 1{} } right ]} {} and 3 1 0 5 2 1 size 12{ left [ matrix { 3 {} # 1 {} # \lline {} # 0 {} ##5 {} # 2 {} # \lline {} # 1{} } right ]} {}

As we look at the two augmented matrices, we notice that the coefficient matrix for both the matrices is the same. Which implies the row operations of the Gauss-Jordan method will also be the same. A great deal of work can be saved if the two right hand columns are grouped together to form one augmented matrix as below.

3 1 1 0 5 2 0 1 size 12{ left [ matrix { 3 {} # 1 {} # \lline {} # 1 {} # 0 {} ##5 {} # 2 {} # \lline {} # 0 {} # 1{} } right ]} {}

And solving this system, we get

1 0 2 1 0 1 5 3 size 12{ left [ matrix { 1 {} # 0 {} # \lline {} # 2 {} # - 1 {} ##0 {} # 1 {} # \lline {} # - 5 {} # 3{} } right ]} {}

The matrix on the right side of the vertical line is the A 1 size 12{A rSup { size 8{ - 1} } } {} matrix.

Got questions? Get instant answers now!
Got questions? Get instant answers now!

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Applied finite mathematics. OpenStax CNX. Jul 16, 2011 Download for free at http://cnx.org/content/col10613/1.5
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Applied finite mathematics' conversation and receive update notifications?

Ask