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

Question

Let AA be a 2×22 \times 2 symmetric matrix such that A[11]=[37]A\left[\begin{array}{l}1 \\ 1\end{array}\right]=\left[\begin{array}{l}3 \\ 7\end{array}\right] and the determinant of AA be 1 . If A1=αA+βIA^{-1}=\alpha A+\beta I, where II is an identity matrix of order 2×22 \times 2, then α+β\alpha+\beta equals _________.

Answer: 1

Solution

This problem requires a strong understanding of matrix properties, including symmetric matrices, determinants, matrix multiplication, and finding the inverse. A crucial aspect is setting up the matrix based on given properties and then using algebraic manipulation to determine its elements and subsequently solve for the desired scalar values.


1. Key Concepts and Formulas

  • Symmetric Matrix: A square matrix AA is symmetric if it is equal to its transpose, i.e., AT=AA^T = A. For a 2×22 \times 2 matrix, if A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, then AT=(acbd)A^T = \begin{pmatrix} a & c \\ b & d \end{pmatrix}. For AA to be symmetric, we must have b=cb=c. Thus, a general 2×22 \times 2 symmetric matrix is of the form (abbc)\begin{pmatrix} a & b \\ b & c \end{pmatrix}.
  • Determinant of a 2×22 \times 2 Matrix: For a matrix A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}, its determinant is given by A=adbc|A| = ad - bc.
  • Inverse of a 2×22 \times 2 Matrix: For an invertible matrix A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix} (i.e., A0|A| \neq 0), its inverse is A1=1A(dbca)A^{-1} = \frac{1}{|A|} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}.
  • Matrix Equality: Two matrices are equal if and only if they have the same dimensions and their corresponding elements are equal.
  • Cayley-Hamilton Theorem (Pro Tip): Every square matrix satisfies its own characteristic equation. For a 2×22 \times 2 matrix AA, the characteristic equation is λ2(Tr(A))λ+A=0\lambda^2 - (\text{Tr}(A))\lambda + |A| = 0. By the Cayley-Hamilton Theorem, A2(Tr(A))A+AI=0A^2 - (\text{Tr}(A))A + |A|I = 0. If A0|A| \neq 0, we can multiply this equation by A1A^{-1} to get A(Tr(A))I+AA1=0A - (\text{Tr}(A))I + |A|A^{-1} = 0. This can be rearranged to express A1A^{-1} in terms of AA and II: A1=1A(Tr(A)IA)A^{-1} = \frac{1}{|A|} (\text{Tr}(A)I - A). This provides a direct way to find α\alpha and β\beta once AA is known.

2. Step-by-Step Solution

Step 1: Represent the symmetric matrix AA and use the determinant condition.

We are given that AA is a 2×22 \times 2 symmetric matrix.

  • Why? By definition of a symmetric matrix, its off-diagonal elements must be equal. This reduces the number of unknowns from four to three. Let AA be represented as: A=(abbc)A = \begin{pmatrix} a & b \\ b & c \end{pmatrix} We are also given that the determinant of AA is 11, i.e., A=1|A|=1.
  • Why? This condition provides an algebraic relationship between the elements a,b,ca, b, c. Using the determinant formula for a 2×22 \times 2 matrix: A=acb2|A| = ac - b^2 So, we have our first equation: acb2=1... (1)ac - b^2 = 1 \quad \text{... (1)}

Step 2: Use the given matrix multiplication to form linear equations.

We are provided with the matrix equation A[11]=[37]A\left[\begin{array}{l}1 \\ 1\end{array}\right]=\left[\begin{array}{l}3 \\ 7\end{array}\right].

  • Why? Performing this matrix multiplication will relate the unknown elements of AA to the known components of the resulting vector, generating more equations. Substitute the matrix AA into the given equation: (abbc)(11)=(37)\begin{pmatrix} a & b \\ b & c \end{pmatrix} \begin{pmatrix} 1 \\ 1 \end{pmatrix} = \begin{pmatrix} 3 \\ 7 \end{pmatrix} Perform the matrix-vector multiplication: (a1+b1b1+c1)=(37)\begin{pmatrix} a \cdot 1 + b \cdot 1 \\ b \cdot 1 + c \cdot 1 \end{pmatrix} = \begin{pmatrix} 3 \\ 7 \end{pmatrix} (a+bb+c)=(37)\begin{pmatrix} a+b \\ b+c \end{pmatrix} = \begin{pmatrix} 3 \\ 7 \end{pmatrix}
  • Why? By the principle of matrix equality, corresponding elements of equal matrices (or vectors) must be equal. This gives us two linear equations: a+b=3... (2)a+b = 3 \quad \text{... (2)} b+c=7... (3)b+c = 7 \quad \text{... (3)}

Step 3: Solve the system of equations to find the elements of AA.

We now have a system of three equations with three unknowns (a,b,ca, b, c):

  1. acb2=1ac - b^2 = 1
  2. a+b=3a+b = 3
  3. b+c=7b+c = 7
  • Why? Our goal is to determine the specific values of a,b,ca, b, c to fully define matrix AA. We can solve this system by substitution. From equation (2), express aa in terms of bb: a=3ba = 3-b From equation (3), express cc in terms of bb: c=7bc = 7-b Now, substitute these expressions for aa and cc into the quadratic equation (1): (3b)(7b)b2=1(3-b)(7-b) - b^2 = 1 Expand the product: (213b7b+b2)b2=1(21 - 3b - 7b + b^2) - b^2 = 1 2110b+b2b2=121 - 10b + b^2 - b^2 = 1 Notice that the b2b^2 terms cancel out, simplifying the equation significantly: 2110b=121 - 10b = 1 Solve for bb: 10b=21110b = 21 - 1 10b=2010b = 20 b=2b = 2 Now, substitute b=2b=2 back into the expressions for aa and cc: a=3b=32=1a = 3 - b = 3 - 2 = 1 c=7b=72=5c = 7 - b = 7 - 2 = 5 Thus, the elements of matrix AA are a=1,b=2,c=5a=1, b=2, c=5.
  • Common Mistake: Algebraic errors during expansion or substitution are common. Double-check your calculations, especially when quadratic terms cancel out.

Step 4: Construct matrix AA and find its inverse A1A^{-1}.

Using the determined values a=1,b=2,c=5a=1, b=2, c=5, the matrix AA is: A=(1225)A = \begin{pmatrix} 1 & 2 \\ 2 & 5 \end{pmatrix} Now, we find A1A^{-1}.

  • Why? The problem asks for a relationship involving A1A^{-1}, so calculating it is a necessary step. Since we know A=1|A|=1, the formula for A1A^{-1} simplifies: A1=1A(cbba)=11(5221)A^{-1} = \frac{1}{|A|} \begin{pmatrix} c & -b \\ -b & a \end{pmatrix} = \frac{1}{1} \begin{pmatrix} 5 & -2 \\ -2 & 1 \end{pmatrix} A1=(5221)A^{-1} = \begin{pmatrix} 5 & -2 \\ -2 & 1 \end{pmatrix}

Step 5: Determine α\alpha and β\beta using the given matrix equation A1=αA+βIA^{-1}=\alpha A+\beta I.

We are given the matrix equation A1=αA+βIA^{-1} = \alpha A + \beta I.

  • Why? This equation allows us to equate the known A1A^{-1} with an expression involving AA and II to find the scalar coefficients α\alpha and β\beta. Substitute AA, A1A^{-1}, and the 2×22 \times 2 identity matrix I=(1001)I = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}: (5221)=α(1225)+β(1001)\begin{pmatrix} 5 & -2 \\ -2 & 1 \end{pmatrix} = \alpha \begin{pmatrix} 1 & 2 \\ 2 & 5 \end{pmatrix} + \beta \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} Perform scalar multiplication and matrix addition on the right-hand side: (5221)=(α2α2α5α)+(β00β)\begin{pmatrix} 5 & -2 \\ -2 & 1 \end{pmatrix} = \begin{pmatrix} \alpha & 2\alpha \\ 2\alpha & 5\alpha \end{pmatrix} + \begin{pmatrix} \beta & 0 \\ 0 & \beta \end{pmatrix} (5221)=(α+β2α2α5α+β)\begin{pmatrix} 5 & -2 \\ -2 & 1 \end{pmatrix} = \begin{pmatrix} \alpha+\beta & 2\alpha \\ 2\alpha & 5\alpha+\beta \end{pmatrix}
  • Why? By equating corresponding elements of the two matrices, we can form a system of linear equations for α\alpha and β\beta. From the (1,2)(1,2) (or (2,1)(2,1)) element: 2α=2    α=12\alpha = -2 \implies \alpha = -1 From the (1,1)(1,1) element: α+β=5\alpha+\beta = 5 Substitute α=1\alpha = -1 into this equation: 1+β=5    β=6-1+\beta = 5 \implies \beta = 6
  • Verification: Always check consistency with other elements. For the (2,2)(2,2) element: 5α+β=5(1)+6=5+6=15\alpha+\beta = 5(-1)+6 = -5+6=1. This matches the (2,2)(2,2) element of A1A^{-1}, confirming our values for α\alpha and β\beta are correct.

Step 6: Calculate α+β\alpha+\beta.

Finally, we need to find the value of α+β\alpha+\beta. α+β=1+6=5\alpha+\beta = -1 + 6 = 5


3. Summary and Key Takeaway

The problem demonstrates a comprehensive application of matrix algebra concepts.

  1. We started by defining the matrix AA using its symmetric property.
  2. We then used the given determinant and matrix multiplication conditions to set up a system of equations for the elements of AA.
  3. Solving this system allowed us to fully determine AA.
  4. Next, we calculated A1A^{-1} using the standard formula.
  5. Finally, by equating A1A^{-1} to the given linear combination αA+βI\alpha A + \beta I, we solved for α\alpha and β\beta.
  6. The result α+β=5\alpha+\beta = 5.

An important takeaway is the utility of the Cayley-Hamilton Theorem for 2×22 \times 2 matrices. Had we used it earlier, we would directly identify α=1\alpha = -1 and β=Tr(A)\beta = \text{Tr}(A). Since Tr(A)=a+c=1+5=6\text{Tr}(A) = a+c = 1+5=6, we would get α=1\alpha=-1 and β=6\beta=6 directly, leading to α+β=1+6=5\alpha+\beta = -1+6=5. This method often saves time in competitive exams.

Practice More Matrices & Determinants Questions

View All Questions