Find the Inverse [[f,1,0],[1,f,1],[0,1,f]]
Problem
Solution
Calculate the determinant of the matrix
A using cofactor expansion along the first row.
Find the matrix of minors by calculating the determinant of the
2×2 matrix remaining after removing the row and column of each element.
Apply the checkerboard of signs to create the matrix of cofactors
(C_i*j)=(−1)(i+j)*(M_i*j)
Transpose the cofactor matrix to find the adjugate matrix
adj(A) Since this matrix is symmetric, the transpose is identical.
Divide by the determinant to obtain the inverse matrix
A(−1)=1/det(A)*adj(A)
Final Answer
Want more problems? Check here!