Skip to main content
Back to Matrices & Determinants
JEE Main 2020
Matrices & Determinants
Matrices and Determinants
Medium

Question

If A = \left[ {\matrix{ 2 & { - 3} \cr { - 4} & 1 \cr } } \right], then adj(3A 2 + 12A) is equal to

Options

Solution

Here's an elaborate, clear, and educational solution to the problem.


Understanding the Key Concepts

This problem involves several fundamental operations with matrices, culminating in finding the adjoint of a matrix expression. Let's first recall the essential definitions and formulas:

  1. Matrix Multiplication: If P=[abcd]P = \begin{bmatrix} a & b \\ c & d \end{bmatrix} and Q=[efgh]Q = \begin{bmatrix} e & f \\ g & h \end{bmatrix}, then their product PQPQ is given by: PQ=[ae+bgaf+bhce+dgcf+dh]PQ = \begin{bmatrix} ae+bg & af+bh \\ ce+dg & cf+dh \end{bmatrix} Remember, matrix multiplication is generally not commutative (PQQPPQ \neq QP).

  2. Scalar Multiplication of a Matrix: If kk is a scalar and M=[abcd]M = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, then kMkM is obtained by multiplying every element of MM by kk: kM=[kakbkckd]kM = \begin{bmatrix} ka & kb \\ kc & kd \end{bmatrix}

  3. Matrix Addition: If P=[abcd]P = \begin{bmatrix} a & b \\ c & d \end{bmatrix} and Q=[efgh]Q = \begin{bmatrix} e & f \\ g & h \end{bmatrix}, then their sum P+QP+Q is obtained by adding corresponding elements: P+Q=[a+eb+fc+gd+h]P+Q = \begin{bmatrix} a+e & b+f \\ c+g & d+h \end{bmatrix} Matrices must be of the same order to be added.

  4. Adjoint of a 2×22 \times 2 Matrix: For a general 2×22 \times 2 matrix M=[abcd]M = \begin{bmatrix} a & b \\ c & d \end{bmatrix}, its adjoint, denoted as adj(MM), is found by swapping the diagonal elements and changing the signs of the off-diagonal elements: adj(M)=[dbca]\text{adj}(M) = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}

Our goal is to first calculate the matrix 3A2+12A3A^2 + 12A and then find its adjoint using these rules.


Step-by-Step Solution

1. Given Matrix A: We are given the matrix AA: A=[2341]A = \begin{bmatrix} 2 & -3 \\ -4 & 1 \end{bmatrix}

2. Calculate A2A^2 To find 3A2+12A3A^2 + 12A, we first need to compute A2A^2. Why this step? Because A2A^2 is a fundamental component of the expression we need to evaluate. A2=AA=[2341][2341]A^2 = A \cdot A = \begin{bmatrix} 2 & -3 \\ -4 & 1 \end{bmatrix} \begin{bmatrix} 2 & -3 \\ -4 & 1 \end{bmatrix} Now, we perform matrix multiplication:

  • First row, first column element: (2)(2)+(3)(4)=4+12=16(2)(2) + (-3)(-4) = 4 + 12 = 16
  • First row, second column element: (2)(3)+(3)(1)=63=9(2)(-3) + (-3)(1) = -6 - 3 = -9
  • Second row, first column element: (4)(2)+(1)(4)=84=12(-4)(2) + (1)(-4) = -8 - 4 = -12
  • Second row, second column element: (4)(3)+(1)(1)=12+1=13(-4)(-3) + (1)(1) = 12 + 1 = 13

So, A2A^2 is: A2=[1691213]A^2 = \begin{bmatrix} 16 & -9 \\ -12 & 13 \end{bmatrix}

3. Calculate 3A23A^2 Next, we multiply A2A^2 by the scalar 3. Why this step? This is one of the terms in the target expression 3A2+12A3A^2 + 12A. 3A2=3[1691213]3A^2 = 3 \begin{bmatrix} 16 & -9 \\ -12 & 13 \end{bmatrix} Multiply each element of A2A^2 by 3:

  • 3×16=483 \times 16 = 48
  • 3×(9)=273 \times (-9) = -27
  • 3×(12)=363 \times (-12) = -36
  • 3×13=393 \times 13 = 39

So, 3A23A^2 is: 3A2=[48273639]3A^2 = \begin{bmatrix} 48 & -27 \\ -36 & 39 \end{bmatrix}

4. Calculate 12A12A Similarly, we multiply the original matrix AA by the scalar 12. Why this step? This is the other term in the expression 3A2+12A3A^2 + 12A. 12A=12[2341]12A = 12 \begin{bmatrix} 2 & -3 \\ -4 & 1 \end{bmatrix} Multiply each element of AA by 12:

  • 12×2=2412 \times 2 = 24
  • 12×(3)=3612 \times (-3) = -36
  • 12×(4)=4812 \times (-4) = -48
  • 12×1=1212 \times 1 = 12

So, 12A12A is: 12A=[24364812]12A = \begin{bmatrix} 24 & -36 \\ -48 & 12 \end{bmatrix}

5. Calculate 3A2+12A3A^2 + 12A Now we add the two matrices we just calculated, 3A23A^2 and 12A12A. Why this step? This completes the evaluation of the matrix expression whose adjoint we need to find. 3A2+12A=[48273639]+[24364812]3A^2 + 12A = \begin{bmatrix} 48 & -27 \\ -36 & 39 \end{bmatrix} + \begin{bmatrix} 24 & -36 \\ -48 & 12 \end{bmatrix} Add corresponding elements:

  • First row, first column: 48+24=7248 + 24 = 72
  • First row, second column: (27)+(36)=2736=63(-27) + (-36) = -27 - 36 = -63
  • Second row, first column: (36)+(48)=3648=84(-36) + (-48) = -36 - 48 = -84
  • Second row, second column: 39+12=5139 + 12 = 51

Let M=3A2+12AM = 3A^2 + 12A. Then: M=[72638451]M = \begin{bmatrix} 72 & -63 \\ -84 & 51 \end{bmatrix}

6. Calculate adj(3A2+12A3A^2 + 12A) Finally, we find the adjoint of the matrix M=[72638451]M = \begin{bmatrix} 72 & -63 \\ -84 & 51 \end{bmatrix}. Why this step? This is the final operation requested by the problem statement. Using the formula for the adjoint of a 2×22 \times 2 matrix, adj[abcd]=[dbca]\text{adj}\begin{bmatrix} a & b \\ c & d \end{bmatrix} = \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}:

  • Swap the diagonal elements: 7272 and 5151 become 5151 and 7272.
  • Change the signs of the off-diagonal elements: 63-63 becomes 6363, and 84-84 becomes 8484.

So, adj(3A2+12A3A^2 + 12A) is: adj(M)=[51(63)(84)72]=[51638472]\text{adj}(M) = \begin{bmatrix} 51 & -(-63) \\ -(-84) & 72 \end{bmatrix} = \begin{bmatrix} 51 & 63 \\ 84 & 72 \end{bmatrix}

7. Compare with Options Comparing our result with the given options: (A) \left[ {\matrix{ {51} & {63} \cr {84} & {72} \cr } } \right] (B) \left[ {\matrix{ {51} & {84} \cr {63} & {72} \cr } } \right] (C) \left[ {\matrix{ {72} & {-63} \cr {-84} & {51} \cr } } \right] (D) \left[ {\matrix{ {72} & {-84} \cr {-63} & {51} \cr } } \right]

Our calculated adjoint matches option (A).


Tips and Common Mistakes to Avoid

  • Order of Operations: Always follow the standard order of operations (PEMDAS/BODMAS). Here, A2A^2 must be calculated before scalar multiplication or addition.
  • Matrix Multiplication: Be extremely careful with the row-by-column multiplication. A common mistake is to multiply elements position-wise (like scalar multiplication), which is incorrect.
  • Signs: Pay close attention to negative signs, especially during multiplication and when taking the adjoint. A single sign error can lead to a completely wrong answer.
  • Adjoint Formula for 2×22 \times 2: Remember that for [abcd]\begin{bmatrix} a & b \\ c & d \end{bmatrix}, the adjoint is [dbca]\begin{bmatrix} d & -b \\ -c & a \end{bmatrix}. The diagonal elements are swapped, and the off-diagonal elements have their signs changed. Do not swap the off-diagonal elements as well, or you might end up with the transpose of the cofactor matrix.

Summary and Key Takeaway

This problem is a comprehensive test of basic matrix operations: multiplication, scalar multiplication, and addition, followed by finding the adjoint of a 2×22 \times 2 matrix. The solution requires careful step-by-step calculation and adherence to the definitions of each operation. Always break down complex matrix expressions into simpler, manageable steps to minimize errors.

The final answer is \boxed{\left[ {\matrix{ {51} & {63} \cr {84} & {72} \cr } } \right]}.

Practice More Matrices & Determinants Questions

View All Questions