You are on page 1of 2

INVERSE OF A MATRIX

I.

A= 1 2 1 7

2 1 9 5

3 3 7 6

9 8 5 1

DetA = =MDETERM()

= 204

*highlight the array, then insert it in the


parenthesis.

#remove the (') apostrophe before the


equal sign.

II.

[A]T= 1 2 3 9

2 1 3 8

1 9 7 5

7 5 6 1

III.

[A]adj= 177 288 -423 93

-173 -308 470 -69

-54 -36 96 -18

61 -78 -82 9

IV.

[A]-1= 0.86765 1.41176 -2.07353 0.45588

-0.84804 -1.50980 2.30392 -0.33824

-0.26471 -0.17647 0.47059 -0.08824

0.29902 -0.38235 -0.40196 0.04412


LU DECOMPOSITION

A= 3 -1 2 -2 = -7

2 -2 -4 2 = 8

2 -1 2 2 = 4

3 -3 -2 1 = 2

3 0 0 0 Y1= -2.333333333

2 -1.333333333 0 0 Y2= -9.5

2 -0.333333333 2 0 Y3= 2.75

3 -2 4 -7 Y4= 3

1 -0.333333333 0.666666667 -0.666666667 X1= 1

0 1 4 -2.5 X2= 2

0 0 1 1.25 X3= -1

0 0 0 1 X4= 3

You might also like