English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Find the inverse of the given matrix by using gauss-jordan elimination.
A=[1 0 1]
[0 1 1]
[1 1 0]

2007-10-05 03:38:26 · 2 answers · asked by Anonymous in Science & Mathematics Mathematics

2 answers

Follow the example below.
you have to form the inverse by reducing your matrix to a unit matrix.
1 0 0 a b c
0 1 0 d e f
0 0 1 g h i

2007-10-05 03:51:56 · answer #1 · answered by cidyah 7 · 0 0

Lets start by putting the unit matrix next to it:
[1 0 1][1 0 0]
[0 1 1][0 1 0]
[1 1 0][0 0 1]

Subtract the 1st row from the 3rd
[1 0 1][1 0 0]
[0 1 1][0 1 0]
[0 1 -1][-1 0 1]

Add the 3rd row from the 2nd
[1 0 1][1 0 0]
[0 2 0][-1 1 1]
[0 1 -1][-1 0 1]

Divide the 2nd row by 2
[1 0 1][1 0 0]
[0 1 0][-1/2 1/2 1/2]
[0 1 -1][-1 0 1]

Subtract the 2nd row from the 3rd

[1 0 1][1 0 0]
[0 1 0][-1/2 1/2 1/2]
[0 0 -1][-1/2 -1/2 1/2]

Add the 3rd row to the 1st
[1 0 0][1/2 -1/2 1/2]
[0 1 0][-1/2 1/2 1/2]
[0 0 -1][-1/2 -1/2 1/2]

Multiply the 3rd row by -1
[1 0 0][1/2 -1/2 1/2]
[0 1 0][-1/2 1/2 1/2]
[0 0 1][1/2 1/2 -1/2]

A^-1 is:
[1/2 -1/2 1/2]
[-1/2 1/2 1/2]
[1/2 1/2 -1/2]

2007-10-05 10:55:30 · answer #2 · answered by Amit Y 5 · 0 0

fedest.com, questions and answers