Linear Algebra/Matrix Inverses

From testwiki
Revision as of 11:50, 13 July 2009 by imported>Thenub314 (categorizing.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

An n-by-n matrix A is the inverse of n-by-n matrix B (and B the inverse of A) if BA = AB = I, where I is an identity matrix.

The inverse of an n-by-n matrix can be calculated by creating an n-by-2n matrix which has the original matrix on the left and the identity matrix on the right. Row reduce this matrix and the right half will be the inverse. If the matrix does not row reduce completely it does not have an inverse.


Example

Let A=[144258369]

We begin by expanding and partitioning A to include the identity matrix, and then proceed to row reduce A until we reach the identity matrix on the left-hand side.

[144|100258|010369|001][144|100030|210063|301][144|100010|2/31/30063|301]


[104|5/34/30010|2/31/30003|121][104|5/34/30010|2/31/30001|1/32/31/3][100|1/34/34/3010|2/31/30001|1/32/31/3]



The matrix B=[1/34/34/32/31/301/32/31/3] is then the inverse of the original matrix A.

Template:BookCat