Matrix Inversion Calculation
Matrix Inversion Calculation
1 5 0
A= 0 2 −1
1 0 3
1
A−1 = ⋅ adj(A)
det(A)
1 5 0
A= 0 2 −1
1 0 3
Simplifying this:
det(A) = 6 − 5 = 1
The adjugate matrix is the transpose of the cofactor matrix. The cofactor matrix is formed by calculating
the cofactors for each element of the matrix.
2 −1
C11 = det ( ) = 2 ⋅ 3 − (−1) ⋅ 0 = 6
0 3
0 −1
C12 = −det ( ) = −(0 ⋅ 3 − (−1) ⋅ 1) = −1
1 3
0 2
C13 = det ( ) = 0 ⋅ 0 − 2 ⋅ 1 = −2
1 0
1 0
C22 = det ( )=1⋅3−0⋅1=3
1 3
1 5
C23 = −det ( ) = −(1 ⋅ 0 − 5 ⋅ 1) = 5
1 0
5 0
C31 = det ( ) = 5 ⋅ (−1) − 0 ⋅ 2 = −5
2 −1
1 0
C32 = −det ( ) = −(1 ⋅ −1 − 0 ⋅ 0) = 1
0 −1
1 5
C33 = det ( )=1⋅2−5⋅0=2
0 2
6 −1 −2
Cofactor(A) = −15 3
5
−5 1 2
Now, take the transpose of the cofactor matrix to get the adjugate matrix:
6 −15 −5
adj(A) = −1
3 1
−2 5 2
Since the determinant det(A) = 1, the inverse is simply the adjugate matrix:
6 −15 −5
−1
A = adj(A) = −1
3 1
−2 5 2
6 −15 −5
A−1 = −1
3 1
−2 5 2
2 1 1
A= 1 2 1
0 0 1
Printed using ChatGPT to PDF, powered by PDFCrowd HTML to PDF API. 2/5
(A − λI)v = 0
Step 1: Compute A − λI
2 1 1 1 0 0 1 1 1
A−I = 1 2 1
− 0 1 0
= 1 1 1
0 0 1 0 0 1 0 0 0
1 1 1 x 0
1 1 1
y
= 0
0 0 0 z 0
1. x + y +z =0
2. x + y + z = 0 (which is the same as the first equation)
3. 0 = 0 (this equation doesn't provide any new information)
x+y+z =0 ⇒ x = −y − z
−x −y − z
v= y
= y
z z
This means that the eigenvectors corresponding to eigenvalue 1 are of the form:
−y − z
v= y
where y and z are free variables. You can express these in terms of y and z , or pick any values for them
to generate specific eigenvectors. For example:
−1
If y = 1 and z = 0, then v = 1 .
Printed using ChatGPT to PDF, powered by PDFCrowd HTML to PDF API. 3/5
−1
If y = 0 and z = 1, then v = 0 .
2 1
A=
3
3
− 23
− 23
2
3 − 13
AT A = I
The transpose of a matrix is obtained by swapping rows with columns. Thus, the transpose AT of the
matrix A is:
1 2
3
3 − 23
T 2 1 2
A =
3
3
3
2
3
− 23 − 13
3
− 23
1
3
2
3
2
3
2 1 2 2 1
A A= T
3
3
3
3
3
− 23
2
3
− 23 − 13 − 23
2
3
− 13
1 1 2 2 2 2 1 4 4
⋅ + ⋅ + (− ) ⋅ (− ) = + + = 1
3 3 3 3 3 3 9 9 9
1 2 2 1 2 2 2 2 4
⋅ + ⋅ + (− ) ⋅ = + − = 0
3 3 3 3 3 3 9 9 9
1 2 2 2 2 1 2 4 2
⋅ + ⋅ (− ) + (− ) ⋅ (− ) = − + = 0
3 3 3 3 3 3 9 9 9
Printed using ChatGPT to PDF, powered by PDFCrowd HTML to PDF API. 4/5
Second row, first column:
2 1 1 2 2 2 2 2 4
⋅ + ⋅ + ⋅ (− ) = + − = 0
3 3 3 3 3 3 9 9 9
2 2 1 1 2 2 4 1 4
⋅ + ⋅ + ⋅ = + + =1
3 3 3 3 3 3 9 9 9
2 2 1 2 2 1 4 2 2
⋅ + ⋅ (− ) + ⋅ (− ) = − − = 0
3 3 3 3 3 3 9 9 9
2 1 2 2 1 2 2 4 2
⋅ + (− ) ⋅ + (− ) ⋅ (− ) = − + = 0
3 3 3 3 3 3 9 9 9
2 2 2 1 1 2 4 2 2
⋅ + (− ) ⋅ + (− ) ⋅ = − − = 0
3 3 3 3 3 3 9 9 9
2 2 2 2 1 1 4 4 1
⋅ + (− ) ⋅ (− ) + (− ) ⋅ (− ) = + + = 1
3 3 3 3 3 3 9 9 9
Step 3: Conclusion
1 0 0
A A= T
0 1 0
=I
0 0 1
T
Since A A = I , the matrix A is indeed orthogonal.
Printed using ChatGPT to PDF, powered by PDFCrowd HTML to PDF API. 5/5