21. Inverses: examples

21. Inverses: examples

Method for finding the inverse

Theorem:

Given an n -by-n matrix A , form the augmented matrix (A|I) (i.e. you have the n -by-n identity matrix on the right hand side of the bar). Apply row operations to this augmented matrix until you obtain an augmented matrix (B|C) with B in reduced echelon form.

  • If B=I then A is invertible with inverse C .

  • If BI then A is not invertible.

So if A is invertible, you start with (A|I) and you end up with (I|A-1) . We're going to postpone the proof for now, and work out some examples before developing the theory necessary for the proof.

Examples

Let A=(1-111) . The augmented matrix is (1-1|1011|01).

To put the left-hand block into reduced echelon form, we do R2R2-R1 : (1-1|1002|-11),
then we do R212R2 to get: (1-1|1001|-1/21/2).
Next we do R1R1+R2 , which gives: (10|1/21/201|-1/21/2).
Now the left-hand block is in reduced echelon form; it is the identity matrix, so A is invertible and its inverse is the right-hand block: (1/21/2-1/21/2).
You can check this agrees with the 2-by-2 inverse we talked about last time.

Here's a messy example. Let's invert A=(123014150) . We have (A|I)=(123|100014|010150|001).

Perform R3R3-R1 to clear the first column: (123|100014|01003-3|-101).
Next, R3R3-3R2 gets us into echelon form: (123|100014|01000-15|-1-31).
Now R3-R3/15 gives: (123|100014|010001|1/151/5-1/15).
Clear the last column with R2R2-4R3 and R1R1-3R3 to get: (120|4/5-3/51/5010|-4/151/54/15001|1/151/5-1/15).
Finally, R1R1-2R2 yields: (100|4/3-1-1/3010|-4/151/54/15001|1/151/5-1/15).
The left-hand block is the identity matrix, so A is invertible and the right-hand block is A-1 .

This means A-1=(4/3-1-1/3-4/151/54/151/151/5-1/15) . We can check this by computing A-1A : we get I .