HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-28
1 <p>To find the adjoint of a matrix, follow the steps mentioned below:</p>
1 <p>To find the adjoint of a matrix, follow the steps mentioned below:</p>
2 <p><strong>1. Compute the Minor of each element:</strong></p>
2 <p><strong>1. Compute the Minor of each element:</strong></p>
3 <p>For each component aij in the matrix, remove the i-th row and j-th column to form a sub-matrix. Compute the determinant of this sub-matrix; this value is the minor mij of the element aij</p>
3 <p>For each component aij in the matrix, remove the i-th row and j-th column to form a sub-matrix. Compute the determinant of this sub-matrix; this value is the minor mij of the element aij</p>
4 <p>For example, a11 = 1</p>
4 <p>For example, a11 = 1</p>
5 <p>Now we need to remove the first row and first column</p>
5 <p>Now we need to remove the first row and first column</p>
6 <p>\( \begin{bmatrix} {4} &amp; {5} \\ {0} &amp;{6} \end{bmatrix}\)</p>
6 <p>\( \begin{bmatrix} {4} &amp; {5} \\ {0} &amp;{6} \end{bmatrix}\)</p>
7 <p>The determinant will be det = (4)(6) - (5)(0) = 24 M11 = 24</p>
7 <p>The determinant will be det = (4)(6) - (5)(0) = 24 M11 = 24</p>
8 <p><strong>2. Determine the Cofactor:</strong>The cofactor cij is given by</p>
8 <p><strong>2. Determine the Cofactor:</strong>The cofactor cij is given by</p>
9 <p>\(c_{ij} = (-1)^{i+j}. m _ {ij}\)</p>
9 <p>\(c_{ij} = (-1)^{i+j}. m _ {ij}\)</p>
10 <p>This accounts for the sign change based on the position of the element.</p>
10 <p>This accounts for the sign change based on the position of the element.</p>
11 <p>For example, a11 = 1 C11 = (-1)1 + 1 × 24 = 24</p>
11 <p>For example, a11 = 1 C11 = (-1)1 + 1 × 24 = 24</p>
12 <p><strong>3. Form the Cofactor matrix:</strong>Arrange all the cofactors cij into a matrix.</p>
12 <p><strong>3. Form the Cofactor matrix:</strong>Arrange all the cofactors cij into a matrix.</p>
13 <p>Cofactor matrix = \( \begin{bmatrix} {24} &amp; {-20} &amp;{5}\\ {-5} &amp;{6} &amp;{-1}\\{-4} &amp;{4} &amp;{4} \end{bmatrix}\)</p>
13 <p>Cofactor matrix = \( \begin{bmatrix} {24} &amp; {-20} &amp;{5}\\ {-5} &amp;{6} &amp;{-1}\\{-4} &amp;{4} &amp;{4} \end{bmatrix}\)</p>
14 <p><strong>4. Transpose the Cofactor matrix:</strong>Take the transpose of the cofactor matrix to obtain the adjoint matrix.</p>
14 <p><strong>4. Transpose the Cofactor matrix:</strong>Take the transpose of the cofactor matrix to obtain the adjoint matrix.</p>
15 <p>Adj(A) = \( \begin{bmatrix} {24} &amp; {-5} &amp;{-4}\\ {-20} &amp;{6} &amp;{4}\\{-5} &amp;{-1} &amp;{4} \end{bmatrix}\)</p>
15 <p>Adj(A) = \( \begin{bmatrix} {24} &amp; {-5} &amp;{-4}\\ {-20} &amp;{6} &amp;{4}\\{-5} &amp;{-1} &amp;{4} \end{bmatrix}\)</p>
16 <p><strong>Adjoint of a 2 × 2 matrix</strong></p>
16 <p><strong>Adjoint of a 2 × 2 matrix</strong></p>
17 <p>The adjoint of a square matrix is gained by first calculating its cofactor matrix and then taking the transpose of that matrix. This adjoint is specifically useful in computing the inverse of the original matrix, provided its determinant is non-zero.</p>
17 <p>The adjoint of a square matrix is gained by first calculating its cofactor matrix and then taking the transpose of that matrix. This adjoint is specifically useful in computing the inverse of the original matrix, provided its determinant is non-zero.</p>
18 <p><strong>Steps to Find the Adjoint of a 2 × 2 matrix</strong></p>
18 <p><strong>Steps to Find the Adjoint of a 2 × 2 matrix</strong></p>
19 <p><strong>The matrix given is:</strong></p>
19 <p><strong>The matrix given is:</strong></p>
20 <p>\(A= \begin{bmatrix} {a} &amp; {b} \\{c} &amp;{d} \end{bmatrix}\)</p>
20 <p>\(A= \begin{bmatrix} {a} &amp; {b} \\{c} &amp;{d} \end{bmatrix}\)</p>
21 <ol><li><strong>Compute the Cofactor matrix: </strong><strong>For each element, calculate its cofactor:</strong> <p>c11 = d </p>
21 <ol><li><strong>Compute the Cofactor matrix: </strong><strong>For each element, calculate its cofactor:</strong> <p>c11 = d </p>
22 <p>c12 = -c</p>
22 <p>c12 = -c</p>
23 <p>c21 = -b</p>
23 <p>c21 = -b</p>
24 <p>c22 = a</p>
24 <p>c22 = a</p>
25 <p>So, the cofactor matrix is: </p>
25 <p>So, the cofactor matrix is: </p>
26 <p>\(C= \begin{bmatrix} {d} &amp; {-c} \\{-b} &amp;{a} \end{bmatrix}\) </p>
26 <p>\(C= \begin{bmatrix} {d} &amp; {-c} \\{-b} &amp;{a} \end{bmatrix}\) </p>
27 </li>
27 </li>
28 <li><p><strong>Transpose the Cofactor matrix:</strong></p>
28 <li><p><strong>Transpose the Cofactor matrix:</strong></p>
29 <p>The adjoint is the transpose of the cofactor matrix:</p>
29 <p>The adjoint is the transpose of the cofactor matrix:</p>
30 <p>adj(A) = CT = \(C= \begin{bmatrix} {d} &amp; {-b} \\{-c} &amp;{a} \end{bmatrix}\)</p>
30 <p>adj(A) = CT = \(C= \begin{bmatrix} {d} &amp; {-b} \\{-c} &amp;{a} \end{bmatrix}\)</p>
31 <p><strong>Example</strong>Given the matrix:</p>
31 <p><strong>Example</strong>Given the matrix:</p>
32 <p>\(C= \begin{bmatrix} {3} &amp; {-6} \\{-4} &amp;{8} \end{bmatrix}\)</p>
32 <p>\(C= \begin{bmatrix} {3} &amp; {-6} \\{-4} &amp;{8} \end{bmatrix}\)</p>
33 </li>
33 </li>
34 </ol><ul><li><strong>1. Cofactor matrix:</strong><p>\(C= \begin{bmatrix} {8} &amp; {4} \\{-6} &amp;{3} \end{bmatrix}\)</p>
34 </ol><ul><li><strong>1. Cofactor matrix:</strong><p>\(C= \begin{bmatrix} {8} &amp; {4} \\{-6} &amp;{3} \end{bmatrix}\)</p>
35 </li>
35 </li>
36 <li><strong> 2. Adjoint:</strong><p>adj(A) = CT = \(\begin{bmatrix} {8} &amp; {-6} \\{4} &amp;{3} \end{bmatrix}\)</p>
36 <li><strong> 2. Adjoint:</strong><p>adj(A) = CT = \(\begin{bmatrix} {8} &amp; {-6} \\{4} &amp;{3} \end{bmatrix}\)</p>
37 </li>
37 </li>
38 </ul><p><strong>Adjoint of 3 × 3 matrices</strong></p>
38 </ul><p><strong>Adjoint of 3 × 3 matrices</strong></p>
39 <p>Every adjoint of a square matrix is the transpose of its cofactor matrix. It is essential for calculating the inverse of a matrix, provided the determinant is non-zero.</p>
39 <p>Every adjoint of a square matrix is the transpose of its cofactor matrix. It is essential for calculating the inverse of a matrix, provided the determinant is non-zero.</p>
40 <p><strong>Step-by-Step Process</strong></p>
40 <p><strong>Step-by-Step Process</strong></p>
41 <p><strong>The matrix given is:</strong></p>
41 <p><strong>The matrix given is:</strong></p>
42 <p>\(A = \begin{bmatrix}{a_{11}} &amp; {a_{12} }&amp;{a_{13}} \\ a_{21} &amp; a_{22} &amp;a_{23} \\a_{31} &amp; a_{32} &amp;a_{33} \end{bmatrix}\)</p>
42 <p>\(A = \begin{bmatrix}{a_{11}} &amp; {a_{12} }&amp;{a_{13}} \\ a_{21} &amp; a_{22} &amp;a_{23} \\a_{31} &amp; a_{32} &amp;a_{33} \end{bmatrix}\)</p>
43 <p><strong>1. Compute the minors of all elements:</strong>Calculate mij of all elements by deleting the i-th row and j-th column of A, and finding the determinant of the sub-matrix.</p>
43 <p><strong>1. Compute the minors of all elements:</strong>Calculate mij of all elements by deleting the i-th row and j-th column of A, and finding the determinant of the sub-matrix.</p>
44 <p><strong>2. Compute the cofactors of all elements:</strong></p>
44 <p><strong>2. Compute the cofactors of all elements:</strong></p>
45 <p>For each element, aij calculate its cofactor cij using the<a>formula</a>: \(c_{ij}=(-1)^{i+j} . det(m^{ij})\)</p>
45 <p>For each element, aij calculate its cofactor cij using the<a>formula</a>: \(c_{ij}=(-1)^{i+j} . det(m^{ij})\)</p>
46 <p><strong>3. Form the Cofactor matrix:</strong>Arrange all the cofactors cij into a matrix.</p>
46 <p><strong>3. Form the Cofactor matrix:</strong>Arrange all the cofactors cij into a matrix.</p>
47 <p><strong>4. Transpose the Cofactor matrix:</strong></p>
47 <p><strong>4. Transpose the Cofactor matrix:</strong></p>
48 <p> The adjoint (adjoint) is the transpose of the cofactor matrix: adj(A) = CT</p>
48 <p> The adjoint (adjoint) is the transpose of the cofactor matrix: adj(A) = CT</p>
49 <p>The following chart gives the steps in summarized form for calculating adjoint of a matrix:</p>
49 <p>The following chart gives the steps in summarized form for calculating adjoint of a matrix:</p>
50 <p><strong>Practice Problem:</strong>Given the matrix:</p>
50 <p><strong>Practice Problem:</strong>Given the matrix:</p>
51 <p>\(A = \begin{bmatrix}{1} &amp; {2}&amp;{3} \\ 4 &amp; 5&amp;6 \\7 &amp; 8 &amp;9\end{bmatrix}\)</p>
51 <p>\(A = \begin{bmatrix}{1} &amp; {2}&amp;{3} \\ 4 &amp; 5&amp;6 \\7 &amp; 8 &amp;9\end{bmatrix}\)</p>
52 <p><strong>1. Compute the minors:</strong></p>
52 <p><strong>1. Compute the minors:</strong></p>
53 <p>\(M_{11} = 5 \times 9 - 6\times 8 = 45 - 48 = -3\\ M_{12} = 4 \times 9 - 6\times 7 = 36 - 42 = -6\\ M_{13} = 4 \times 8 - 5 \times 7 = 32 - 35 = -3 \\ M_{21} = 2 \times 9 = 3 \times 8 = 18 - 24 = -6\\ M_{22} = 1 \times 9 - 3 \times 7 = 9 - 21 = -12\\ M_{23} = 1 \times 8 - 2\times 7 = 8 - 14 = 6\\ M_{31} = 2 \times 6 - 5 \times 3 = 12 - 15 = -3\\ M_{32} = 1 \times6 - 4 \times 3 = 6 - 12 = -6\\ M_{33} = 1 \times 5 - 4 \times 2 = 5 - 8 = -3\)</p>
53 <p>\(M_{11} = 5 \times 9 - 6\times 8 = 45 - 48 = -3\\ M_{12} = 4 \times 9 - 6\times 7 = 36 - 42 = -6\\ M_{13} = 4 \times 8 - 5 \times 7 = 32 - 35 = -3 \\ M_{21} = 2 \times 9 = 3 \times 8 = 18 - 24 = -6\\ M_{22} = 1 \times 9 - 3 \times 7 = 9 - 21 = -12\\ M_{23} = 1 \times 8 - 2\times 7 = 8 - 14 = 6\\ M_{31} = 2 \times 6 - 5 \times 3 = 12 - 15 = -3\\ M_{32} = 1 \times6 - 4 \times 3 = 6 - 12 = -6\\ M_{33} = 1 \times 5 - 4 \times 2 = 5 - 8 = -3\)</p>
54 <p><strong>2. Calculate the cofactors off all elements:</strong></p>
54 <p><strong>2. Calculate the cofactors off all elements:</strong></p>
55 <p>\(C_{11} -3\\ C_{12} = 6\\ C_{13} = -3 \\ C_{21} = 6\\ C_{22} = -12\\ C_{23} = - 6\\ C_{31} = -3\\ C_{32} = 6\\ C_{33} = -3\)</p>
55 <p>\(C_{11} -3\\ C_{12} = 6\\ C_{13} = -3 \\ C_{21} = 6\\ C_{22} = -12\\ C_{23} = - 6\\ C_{31} = -3\\ C_{32} = 6\\ C_{33} = -3\)</p>
56 <p><strong>3. Form the Cofactor matrix:</strong></p>
56 <p><strong>3. Form the Cofactor matrix:</strong></p>
57 <p>\(A = \begin{bmatrix}{-3} &amp; {6}&amp;{-3} \\ 6 &amp; -12&amp;-6 \\-3 &amp; 6 &amp;-3\end{bmatrix}\)</p>
57 <p>\(A = \begin{bmatrix}{-3} &amp; {6}&amp;{-3} \\ 6 &amp; -12&amp;-6 \\-3 &amp; 6 &amp;-3\end{bmatrix}\)</p>
58 <p><strong>4. Transpose the Cofactor matrix:</strong></p>
58 <p><strong>4. Transpose the Cofactor matrix:</strong></p>
59 <p>\(A = \begin{bmatrix}{-3} &amp; {6}&amp;{-3} \\ 6 &amp; -12&amp;6 \\-3 &amp; -6 &amp;-3\end{bmatrix}\)</p>
59 <p>\(A = \begin{bmatrix}{-3} &amp; {6}&amp;{-3} \\ 6 &amp; -12&amp;6 \\-3 &amp; -6 &amp;-3\end{bmatrix}\)</p>
60  
60