Line 75: Line 75:
  
 
Example:<br>  
 
Example:<br>  
 +
 +
Steps:
 +
 +
1) Get each of the 9 cofactor matrices by eliminating the row and the column of each element.
 +
 +
2) Get each determinat from the 2x2 matrices
 +
 +
3) Place the correct sign for each determinant. (If the sum of i and j = even its positive, odd negative).
 +
 +
 +
 +
  
 
<math>A= \left(\begin{array}{cccc}1&0&-1\\1&1&1\\2&1&2\end{array}\right)</math>  
 
<math>A= \left(\begin{array}{cccc}1&0&-1\\1&1&1\\2&1&2\end{array}\right)</math>  
Line 82: Line 94:
 
<math>M21=\left(\begin{array}{cccc}0&-1\\1&2\end{array}\right)</math>&nbsp;&nbsp;<math>M22=\left(\begin{array}{cccc}1&-1\\2&2\end{array}\right)</math>&nbsp;&nbsp;<math>M23=\left(\begin{array}{cccc}1&0\\2&1\end{array}\right)</math>  
 
<math>M21=\left(\begin{array}{cccc}0&-1\\1&2\end{array}\right)</math>&nbsp;&nbsp;<math>M22=\left(\begin{array}{cccc}1&-1\\2&2\end{array}\right)</math>&nbsp;&nbsp;<math>M23=\left(\begin{array}{cccc}1&0\\2&1\end{array}\right)</math>  
  
<math>M31=\left(\begin{array}{cccc}0&-1\\1&1\end{array}\right)</math>&nbsp;&nbsp;<math>M32=\left(\begin{array}{cccc}1&-1\\1&1\end{array}\right)</math>&nbsp;&nbsp;<math>M33=\left(\begin{array}{cccc}1&0\\1&1\end{array}\right)</math>
+
<math>M31=\left(\begin{array}{cccc}0&-1\\1&1\end{array}\right)</math>&nbsp;&nbsp;<math>M32=\left(\begin{array}{cccc}1&-1\\1&1\end{array}\right)</math>&nbsp;&nbsp;<math>M33=\left(\begin{array}{cccc}1&0\\1&1\end{array}\right)</math>  
 +
 
 +
 
 +
 
 +
A11=(+)1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A12=(-)0 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A13=(+)-1
 +
 
 +
A21=(-) 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A22=(+) 4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A32=(-) 1
 +
 
 +
A31=(+) 1 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; A32=(-)2 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;A33=(+) 1

Revision as of 09:44, 16 December 2011


Inverse of a Matrix


Definition: Let A be a square matrix of order n x n(square matrix). If there exists a matrix B such that

A B = I n = B A

Then B is called the inverse matrix of A.


Conditions

A n x n is invertible (non-singular) if: 
  • Ax=0 has a unique solution
  • There is a B matrix such that A B = In
  • Ax=b has a unique solution for any b---x=A − 1



Properties

  • (AB) − 1 = B − 1A − 1
  • (A1 A2.....Ar) − 1=Ar − 1A'''r − 1 − 1...A1 − 1
  • (A − 1) − 1 = A
  • (A − 1)T = (AT) − 1



Calculations

  • Steps:

1) Put the original matrix and in the left side the corresponding identity matrix (In) in the right side.

2) You compute rref in the left side, keep in mind that the operations also have an effect on the right side.

3) After you have a reduced row echelon form in the left side, the matrix that is left on the right side is the Inverse of the original matrix. 

$ \left(\begin{array}{cccc}2&3|1&0\\4&5|0&1\end{array}\right) $ ----->$ \left(\begin{array}{cccc} 2 & 3 | 1 & 0 \\ 0 & -1 | -2 & 1 \end{array}\right) $------>$ \left(\begin{array}{cccc} 2 & 0 | -5 & 3 \\ 0 & -1 | -2 & 1 \end{array}\right) $ ----> $ \left(\begin{array}{cccc} 1 & 0 || -5/2 & 3/2 \\0&1 || 2 & -1 \end{array}\right) $


$ A^{-1}=\left(\begin{array}{cccc} -5/2 & 3/2 \\ 2 & -1 \end{array}\right) $





Note: Calculating the Reuduced Row echelon form for a square matrix with n >5 can get complicated and if you get the Reduced row echelon form wrong by consequence you get the Inverse wrong. In some cases it is better to use the adjacent matrix as I will show on the next section.

Adjacent Matrix

A is a n x n matrix.

Def: the (i,j) minor of A is the submatrix of A obtained by erasing row i and column j of A. there are n2 submissions.

To each Mij we associate the number

Aij = ( − 1)i + j * d'e't(M'i'j)

Finally let C be the "cofactor matrix" with entries Cij = Aij.

Note: The cofactor or adjacent matrix does not have the same order of entries as A.

Example 1:

Normal Matrix                                           Adjacent Matrix

 $ \left(\begin{array}{cccc}A11&A12&A13\\A21&A22&A23\\A31&A32&A33\end{array}\right) $                   $ \left(\begin{array}{cccc}A11&A21&A31\\A12&A22&A32\\A13&A23&A33\end{array}\right) $

Example:

Steps:

1) Get each of the 9 cofactor matrices by eliminating the row and the column of each element.

2) Get each determinat from the 2x2 matrices

3) Place the correct sign for each determinant. (If the sum of i and j = even its positive, odd negative).



$ A= \left(\begin{array}{cccc}1&0&-1\\1&1&1\\2&1&2\end{array}\right) $

$ M11=\left(\begin{array}{cccc}1&1\\1&2\end{array}\right) $   $ M12=\left(\begin{array}{cccc}1&1\\2&2\end{array}\right) $  $ M13=\left(\begin{array}{cccc}1&1\\2&1\end{array}\right) $

$ M21=\left(\begin{array}{cccc}0&-1\\1&2\end{array}\right) $  $ M22=\left(\begin{array}{cccc}1&-1\\2&2\end{array}\right) $  $ M23=\left(\begin{array}{cccc}1&0\\2&1\end{array}\right) $

$ M31=\left(\begin{array}{cccc}0&-1\\1&1\end{array}\right) $  $ M32=\left(\begin{array}{cccc}1&-1\\1&1\end{array}\right) $  $ M33=\left(\begin{array}{cccc}1&0\\1&1\end{array}\right) $


A11=(+)1                                  A12=(-)0                                    A13=(+)-1

A21=(-) 1                                  A22=(+) 4                                  A32=(-) 1

A31=(+) 1                                 A32=(-)2                                    A33=(+) 1

Alumni Liaison

EISL lab graduate

Mu Qiao