Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2021-09-14 16:43:51
Size: 1254
Comment:
Revision 6 as of 2023-07-03 05:11:13
Size: 1643
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
= Inverse Matrices = = Matrix Inversion =

<<TableOfContents>>

----

Line 6: Line 12:

If A^-1^ exists, then A is '''invertible''' and '''non-singular'''. Not all matrices are invertible.

----



== Notable Properties ==

For a permutation matrix, the inverse is also the transpose: P^-1^ = P^T^.

For a square matrix A, the left inverse is the same as the right inverse. AA^-1^ = A^-1^A = I

----



== Calculation ==
Line 18: Line 42:
== Gauss-Jordan Calculation == === Gauss-Jordan Calculation ===

Matrix Inversion


Introduction

An inverse matrix is a matrix A-1 where multiplying it by matrix A results in the identity matrix.

If A-1 exists, then A is invertible and non-singular. Not all matrices are invertible.


Notable Properties

For a permutation matrix, the inverse is also the transpose: P-1 = PT.

For a square matrix A, the left inverse is the same as the right inverse. AA-1 = A-1A = I


Calculation

Consider the below problem:

┌    ┐┌    ┐   ┌    ┐
│ 1 3││ a b│   │ 1 0│
│ 2 7││ c d│ = │ 0 1│
└    ┘└    ┘   └    ┘

Gauss-Jordan Calculation

The inverse matrix can be calculated through elimination and reverse elimination.

First step:

┌            ┐
│ [1] 3 │ 1 0│
│  2  7 │ 0 1│
└            ┘

2 - 1m = 0
     m = 2

   2     7     0     1
- 1m  - 3m  - 1m  - 0m
____  ____  ____  ____
   0     1    -2     1

┌             ┐
│ [1] 3 │  1 0│
│  0  1 │ -2 1│
└             ┘

Second step:

┌             ┐
│ 1  3  │  1 0│
│ 0 [1] │ -2 1│
└             ┘

3 - 1m = 0
     m = 3

   1     3      1     0
- 0m  - 1m  - -2m  - 1m
____  ____  _____  ____
   1     0      7     -3

┌              ┐
│ 1  0  │  7 -3│
│ 0 [1] │ -2  1│
└              ┘

The inverse matrix of A is:

┌      ┐
│  7 -3│
│ -2  1│
└      ┘


CategoryRicottone

LinearAlgebra/MatrixInversion (last edited 2024-06-06 02:58:56 by DominicRicottone)