Notes
Categories

Cofactor in Discrete Mathematics [ English ]

< Prev Next >

Cofactor in Discrete Mathematics / Matrix Algebra – Questions with Answers

1. Define Cofactor.

Answer: The cofactor of an element (a_{ij}) in a matrix is defined as:

[ C_{ij} = (-1)^{i+j} M_{ij} ]

where (M_{ij}) is the minor obtained by deleting the (i^{th}) row and (j^{th}) column.


2. Find the cofactor of element 5 in the matrix:

[ A= \begin{bmatrix} 2 & 3
5 & 7 \end{bmatrix} ]

Answer:

Element 5 is at position ((2,1)).

Minor:

[ M_{21}=3 ]

Cofactor:

[ C_{21}=(-1)^{2+1}(3) ]

[ C_{21}=(-1)^3(3)=-3 ]

Final Answer: (-3)


3. Find the cofactor of element 3 in the matrix:

[ A= \begin{bmatrix} 1 & 3
4 & 2 \end{bmatrix} ]

Answer:

Element 3 is at position ((1,2)).

Minor:

[ M_{12}=4 ]

Cofactor:

[ C_{12}=(-1)^{1+2}(4) ]

[ =-4 ]

Final Answer: (-4)


4. Find the cofactors of all elements of the matrix:

[ A= \begin{bmatrix} 1 & 2
3 & 4 \end{bmatrix} ]

Answer:

Cofactor of 1:

[ C_{11}=(-1)^{1+1}(4)=4 ]

Cofactor of 2:

[ C_{12}=(-1)^{1+2}(3)=-3 ]

Cofactor of 3:

[ C_{21}=(-1)^{2+1}(2)=-2 ]

Cofactor of 4:

[ C_{22}=(-1)^{2+2}(1)=1 ]

Cofactor Matrix:

[ \begin{bmatrix} 4 & -3
-2 & 1 \end{bmatrix} ]


5. Find the cofactor of element 6 in the matrix:

[ A= \begin{bmatrix} 1 & 2 & 3
4 & 5 & 6
7 & 8 & 9 \end{bmatrix} ]

Answer:

Element 6 is at position ((2,3)).

Delete row 2 and column 3:

[ \begin{bmatrix} 1 & 2
7 & 8 \end{bmatrix} ]

Minor:

[ M_{23}=(1)(8)-(2)(7) ]

[ =8-14=-6 ]

Cofactor:

[ C_{23}=(-1)^{2+3}(-6) ]

[ =(-1)^5(-6)=6 ]

Final Answer: 6


6. Find the cofactor of element 8 in the matrix:

[ A= \begin{bmatrix} 2 & 1 & 3
4 & 5 & 6
7 & 8 & 9 \end{bmatrix} ]

Answer:

Element 8 is at position ((3,2)).

Delete row 3 and column 2:

[ \begin{bmatrix} 2 & 3
4 & 6 \end{bmatrix} ]

Minor:

[ M_{32}=(2)(6)-(3)(4) ]

[ =12-12=0 ]

Cofactor:

[ C_{32}=(-1)^{3+2}(0)=0 ]

Final Answer: 0


7. Write the sign pattern used in cofactors.

Answer:

The sign pattern is:

[ \begin{bmatrix}


8. What is the difference between minor and cofactor?

Answer:


9. Find the cofactor matrix of:

[ A= \begin{bmatrix} 2 & 0
1 & 5 \end{bmatrix} ]

Answer:

[ C_{11}=5 ]

[ C_{12}=-1 ]

[ C_{21}=0 ]

[ C_{22}=2 ]

Cofactor Matrix:

[ \begin{bmatrix} 5 & -1
0 & 2 \end{bmatrix} ]


10. Why are cofactors important?

Answer:

Cofactors are used for:

< Prev Next >