Hello, future mathematicians! Today, we're embarking on an exciting journey into a very important concept in matrices called the
Adjoint of a Square Matrix. It might sound a bit intimidating at first, but trust me, by the end of this session, you'll see it's a logical and straightforward extension of concepts you've already learned.
Before we dive into the adjoint, let's quickly refresh our memory on a few foundational ideas.
### The Foundation: Square Matrices, Minors, and Cofactors
Remember, a
square matrix is simply a matrix where the number of rows is equal to the number of columns. We're only going to talk about adjoints for square matrices.
Now, let's revisit two crucial building blocks:
Minors and
Cofactors.
#### 1. Minors: Peeking into Smaller Worlds
Imagine you have a big matrix, and you want to know what's happening in a smaller section of it. That's essentially what a minor helps us do!
For any element $a_{ij}$ in a square matrix $A$ (where $i$ is the row number and $j$ is the column number), its
Minor, denoted by $M_{ij}$, is the
determinant of the submatrix obtained by deleting the $i$-th row and $j$-th column.
Let's see this in action:
Example 1: 2x2 Matrix |
|---|
Let $A = egin{pmatrix} 3 & 5 \ 1 & 2 end{pmatrix}$
- Minor of $a_{11}$ (which is 3): Delete 1st row, 1st column. Remaining element is 2. So, $M_{11} = det(2) = 2$.
- Minor of $a_{12}$ (which is 5): Delete 1st row, 2nd column. Remaining element is 1. So, $M_{12} = det(1) = 1$.
- Minor of $a_{21}$ (which is 1): Delete 2nd row, 1st column. Remaining element is 5. So, $M_{21} = det(5) = 5$.
- Minor of $a_{22}$ (which is 2): Delete 2nd row, 2nd column. Remaining element is 3. So, $M_{22} = det(3) = 3$.
|
Example 2: 3x3 Matrix |
|---|
Let $A = egin{pmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 end{pmatrix}$
- Minor of $a_{11}$ (which is 1): Delete 1st row, 1st column.
Submatrix is $egin{pmatrix} 5 & 6 \ 8 & 9 end{pmatrix}$.
So, $M_{11} = det egin{pmatrix} 5 & 6 \ 8 & 9 end{pmatrix} = (5 imes 9) - (6 imes 8) = 45 - 48 = -3$.
- Minor of $a_{12}$ (which is 2): Delete 1st row, 2nd column.
Submatrix is $egin{pmatrix} 4 & 6 \ 7 & 9 end{pmatrix}$.
So, $M_{12} = det egin{pmatrix} 4 & 6 \ 7 & 9 end{pmatrix} = (4 imes 9) - (6 imes 7) = 36 - 42 = -6$.
- You'd do this for all 9 elements!
|
#### 2. Cofactors: Minors with a Sign Twist
Cofactors are almost the same as minors, but they come with a crucial sign attached to them!
The
Cofactor of an element $a_{ij}$, denoted by $C_{ij}$, is given by the formula:
$C_{ij} = (-1)^{i+j} M_{ij}$
Where $M_{ij}$ is the minor of $a_{ij}$.
What does $(-1)^{i+j}$ do? It simply means we apply a sign based on the position of the element:
* If $(i+j)$ is an even number, $(-1)^{i+j}$ is $+1$, so $C_{ij} = M_{ij}$.
* If $(i+j)$ is an odd number, $(-1)^{i+j}$ is $-1$, so $C_{ij} = -M_{ij}$.
This gives us a handy
checkerboard pattern of signs for the cofactors:
For a 2x2 matrix: $egin{pmatrix} + & - \ - & + end{pmatrix}$
For a 3x3 matrix: $egin{pmatrix} + & - & + \ - & + & - \ + & - & + end{pmatrix}$
Let's revisit our examples to calculate cofactors:
Example 1: Cofactors for 2x2 Matrix |
|---|
Let $A = egin{pmatrix} 3 & 5 \ 1 & 2 end{pmatrix}$
- $C_{11} = (-1)^{1+1} M_{11} = (+1)(2) = 2$
- $C_{12} = (-1)^{1+2} M_{12} = (-1)(1) = -1$
- $C_{21} = (-1)^{2+1} M_{21} = (-1)(5) = -5$
- $C_{22} = (-1)^{2+2} M_{22} = (+1)(3) = 3$
|
Example 2: Cofactors for 3x3 Matrix |
|---|
Let $A = egin{pmatrix} 1 & 2 & 3 \ 4 & 5 & 6 \ 7 & 8 & 9 end{pmatrix}$
- $C_{11} = (-1)^{1+1} M_{11} = (+1)(-3) = -3$
- $C_{12} = (-1)^{1+2} M_{12} = (-1)(-6) = 6$
- ... (and so on for all other elements)
|
### The Cofactor Matrix: A Collection of Cofactors
Once you've calculated all the cofactors for every element in your original matrix, you can arrange them into a new matrix. This new matrix is called the
Cofactor Matrix.
If $A = [a_{ij}]$, then its cofactor matrix, let's call it $C$, will be $C = [C_{ij}]$, where each element $C_{ij}$ is the cofactor of $a_{ij}$.
For our 2x2 example matrix $A = egin{pmatrix} 3 & 5 \ 1 & 2 end{pmatrix}$, its cofactor matrix would be:
$C = egin{pmatrix} C_{11} & C_{12} \ C_{21} & C_{22} end{pmatrix} = egin{pmatrix} 2 & -1 \ -5 & 3 end{pmatrix}$
### Finally, The Adjoint!
Now that we have a solid understanding of minors, cofactors, and the cofactor matrix, defining the adjoint is super simple!
The
Adjoint of a square matrix $A$, denoted as
$ ext{adj}(A)$ or
$ ext{Adj}(A)$, is simply the
transpose of its cofactor matrix.
$ ext{adj}(A) = ( ext{Cofactor Matrix of A})^T$
Remember what "transpose" means? It means we swap the rows and columns of the matrix. The element at position $(i, j)$ in the original matrix moves to position $(j, i)$ in the transposed matrix.
So, if the cofactor matrix is $C = egin{pmatrix} C_{11} & C_{12} & C_{13} \ C_{21} & C_{22} & C_{23} \ C_{31} & C_{32} & C_{33} end{pmatrix}$,
then its adjoint will be $ ext{adj}(A) = C^T = egin{pmatrix} C_{11} & C_{21} & C_{31} \ C_{12} & C_{22} & C_{32} \ C_{13} & C_{23} & C_{33} end{pmatrix}$.
Notice how the row indices become column indices and vice-versa. For example, $C_{12}$ (row 1, column 2) in the cofactor matrix becomes the element in row 2, column 1 in the adjoint matrix.
### Let's Calculate Adjoints Step-by-Step!
#### Example 1: Finding the Adjoint of a 2x2 Matrix
Let $A = egin{pmatrix} 4 & -2 \ 3 & 1 end{pmatrix}$.
- Calculate the Minors:
- $M_{11}$ (for element 4): Delete row 1, col 1 $Rightarrow 1$. So, $M_{11} = 1$.
- $M_{12}$ (for element -2): Delete row 1, col 2 $Rightarrow 3$. So, $M_{12} = 3$.
- $M_{21}$ (for element 3): Delete row 2, col 1 $Rightarrow -2$. So, $M_{21} = -2$.
- $M_{22}$ (for element 1): Delete row 2, col 2 $Rightarrow 4$. So, $M_{22} = 4$.
- Calculate the Cofactors: (Remember the sign pattern: $egin{pmatrix} + & - \ - & + end{pmatrix}$)
- $C_{11} = (+1)M_{11} = (+1)(1) = 1$
- $C_{12} = (-1)M_{12} = (-1)(3) = -3$
- $C_{21} = (-1)M_{21} = (-1)(-2) = 2$
- $C_{22} = (+1)M_{22} = (+1)(4) = 4$
- Form the Cofactor Matrix:
$C = egin{pmatrix} C_{11} & C_{12} \ C_{21} & C_{22} end{pmatrix} = egin{pmatrix} 1 & -3 \ 2 & 4 end{pmatrix}$
- Find the Adjoint (Transpose the Cofactor Matrix):
$ ext{adj}(A) = C^T = egin{pmatrix} 1 & 2 \ -3 & 4 end{pmatrix}$
JEE Pro Tip for 2x2 Matrices: For a 2x2 matrix $A = egin{pmatrix} a & b \ c & d end{pmatrix}$, the adjoint can be found super quickly! Just
swap the diagonal elements (a and d) and
change the signs of the off-diagonal elements (b and c).
So, $ ext{adj}(A) = egin{pmatrix} d & -b \ -c & a end{pmatrix}$. Isn't that neat? Use this trick to save time in exams!
#### Example 2: Finding the Adjoint of a 3x3 Matrix
Let $A = egin{pmatrix} 1 & 2 & 0 \ 3 & -1 & 4 \ 0 & 5 & 6 end{pmatrix}$.
- Calculate all 9 Minors:
- $M_{11} = det egin{pmatrix} -1 & 4 \ 5 & 6 end{pmatrix} = (-1)(6) - (4)(5) = -6 - 20 = -26$
- $M_{12} = det egin{pmatrix} 3 & 4 \ 0 & 6 end{pmatrix} = (3)(6) - (4)(0) = 18 - 0 = 18$
- $M_{13} = det egin{pmatrix} 3 & -1 \ 0 & 5 end{pmatrix} = (3)(5) - (-1)(0) = 15 - 0 = 15$
- $M_{21} = det egin{pmatrix} 2 & 0 \ 5 & 6 end{pmatrix} = (2)(6) - (0)(5) = 12 - 0 = 12$
- $M_{22} = det egin{pmatrix} 1 & 0 \ 0 & 6 end{pmatrix} = (1)(6) - (0)(0) = 6 - 0 = 6$
- $M_{23} = det egin{pmatrix} 1 & 2 \ 0 & 5 end{pmatrix} = (1)(5) - (2)(0) = 5 - 0 = 5$
- $M_{31} = det egin{pmatrix} 2 & 0 \ -1 & 4 end{pmatrix} = (2)(4) - (0)(-1) = 8 - 0 = 8$
- $M_{32} = det egin{pmatrix} 1 & 0 \ 3 & 4 end{pmatrix} = (1)(4) - (0)(3) = 4 - 0 = 4$
- $M_{33} = det egin{pmatrix} 1 & 2 \ 3 & -1 end{pmatrix} = (1)(-1) - (2)(3) = -1 - 6 = -7$
- Calculate the 9 Cofactors: (Remember the sign pattern: $egin{pmatrix} + & - & + \ - & + & - \ + & - & + end{pmatrix}$)
- $C_{11} = (+1)M_{11} = (-26)$
- $C_{12} = (-1)M_{12} = -(18) = -18$
- $C_{13} = (+1)M_{13} = (15)$
- $C_{21} = (-1)M_{21} = -(12) = -12$
- $C_{22} = (+1)M_{22} = (6)$
- $C_{23} = (-1)M_{23} = -(5) = -5$
- $C_{31} = (+1)M_{31} = (8)$
- $C_{32} = (-1)M_{32} = -(4) = -4$
- $C_{33} = (+1)M_{33} = (-7)$
- Form the Cofactor Matrix:
$C = egin{pmatrix} C_{11} & C_{12} & C_{13} \ C_{21} & C_{22} & C_{23} \ C_{31} & C_{32} & C_{33} end{pmatrix} = egin{pmatrix} -26 & -18 & 15 \ -12 & 6 & -5 \ 8 & -4 & -7 end{pmatrix}$
- Find the Adjoint (Transpose the Cofactor Matrix):
$ ext{adj}(A) = C^T = egin{pmatrix} -26 & -12 & 8 \ -18 & 6 & -4 \ 15 & -5 & -7 end{pmatrix}$
Phew! That was quite a bit of calculation for a 3x3 matrix, right? But each step is simple, it just requires careful attention to detail and signs.
### Why is the Adjoint Important?
You might be thinking, "Why do we go through all this trouble to calculate the adjoint?" Well, the adjoint is not just a mathematical curiosity; it's a
crucial stepping stone to finding the inverse of a matrix!
The inverse of a square matrix $A$, denoted $A^{-1}$, exists only if its determinant is non-zero (i.e., $A$ is a non-singular matrix). And the formula that connects the inverse to the adjoint is beautifully simple:
$A^{-1} = frac{1}{det(A)} ext{adj}(A)$
This formula is incredibly powerful and something we'll explore in detail very soon. For now, understand that without the adjoint, finding the inverse of matrices (especially larger ones) would be much harder!
###
CBSE vs. JEE Focus
*
CBSE/Boards: The focus will be on correctly applying the definition of minors, cofactors, and adjoint for 2x2 and 3x3 matrices. Step-by-step calculation with accuracy is key. Questions will primarily test your understanding of the process.
*
JEE Mains & Advanced: While the fundamental calculations are important, JEE will test your speed and accuracy. The 2x2 trick for adjoint will be very useful. For 3x3 matrices, you'll need to be quick and error-free. Furthermore, JEE often asks questions that involve properties of the adjoint, relations with inverse, and sometimes even adjoints of higher order matrices (though explicit calculation for >3x3 is rare, properties are fair game). You might see questions like $ ext{adj}(A^T)$ or $ ext{adj}( ext{adj}(A))$.
### Conclusion
So, to summarize:
1. We start with a
square matrix.
2. For each element, we find its
Minor (determinant of the submatrix after deleting its row and column).
3. Then, we find its
Cofactor by applying a sign to the minor based on its position ($(-1)^{i+j}M_{ij}$).
4. We arrange all these cofactors into a
Cofactor Matrix.
5. Finally, the
Adjoint of the matrix is simply the
transpose of this cofactor matrix.
Mastering the calculation of the adjoint is a critical skill in linear algebra and will pave the way for understanding matrix inverses and solving systems of linear equations. Keep practicing those determinant and cofactor calculations, and you'll be an adjoint master in no time!