Calculating the inverse

We saw on the previous page, AT-1 = A-1T. Or AT-1T = A-1. But the process of inverting a transpose is equivalent to doing column operations on the original matrix. So let's do some column operations.

Column operations only

We begin with the matrix from the previous page, augmented with an identity matrix of the appropriate rank and begin column operations.

101
01-1
10-1
100
010
001

Add column 2 to column 3.

101
010
10-1
100
011
001

Subtract column 1 from column 3.

100
010
10-2
10-1
011
001

Divide through column 3 by -2.

100
010
101
101/2
01-1/2
00-1/2

Subtract column 3 from column 1.

100
010
001
1/201/2
1/21-1/2
1/20-1/2

Equivalent inverse

The inverse performed this way is equivalent to the one calculated previously. A-1:

1/201/2
1/21-1/2
1/20-1/2

On the next page we'll combine column and row operations.