In a square matrix, each element possesses its own minor. The minor is defined as a value obtained from the determinant of a square matrix by deleting out a row and a column corresponding to the element of a matrix.
Given a square matrix A, by minor of an element
- Hide
row and column one by one from given matrix, where i refer to m and j refers to n that is the total number of rows and columns in matrices. - Evaluate the value of the determinant of the matrix made after hiding a row and a column from Step 1.
Minor of 3×3 Matrix
Consider the 3*3 matrix
Example: Consider the 3*3 matrix
Solution: We first calculate minor of element 2. Since it is (1,1) element of A, we delete first row and first column, so that determinant of remaining array is
Since -1 is (1,2) element, we delete first row and second column. The determinant of remaining array
The minor of 3 is
The minor of 0 is
The minor of 4 is
The minor of 2 in (2,3) place in
The minor of 1 is
The minor of (-1) is
The minor of (-2) is
Minor of 2×2 Matrix
For a 2*2 matrix, calculation of minors is very simple. Let us consider a 2 x 2 matrix
Example: Consider the matrix
Solution:
Similarly, minors of 6, -4 and 7 will be -4,6,2 respectively.
Exercise
- Find the minor of the matrix
. - Find the minor of matrix
. - Find the minor of matrix
. - Find the minor of matrix
. - Find the minor of the matrix
.