Skip to main content
Back to Matrices & Determinants
JEE Main 2018
Matrices & Determinants
Matrices and Determinants
Easy

Question

If A = \left[ {\matrix{ a & b \cr b & a \cr } } \right] and {A^2} = \left[ {\matrix{ \alpha & \beta \cr \beta & \alpha \cr } } \right], then

Options

Solution

Key Concept: Matrix Multiplication

The fundamental operation required to solve this problem is matrix multiplication. For two matrices to be multiplied, the number of columns in the first matrix must be equal to the number of rows in the second matrix. If we have two 2×22 \times 2 matrices, say P=[p11p12p21p22]P = \begin{bmatrix} p_{11} & p_{12} \\ p_{21} & p_{22} \end{bmatrix} and Q=[q11q12q21q22]Q = \begin{bmatrix} q_{11} & q_{12} \\ q_{21} & q_{22} \end{bmatrix}, their product PQPQ is given by: PQ=[(p11q11+p12q21)(p11q12+p12q22)(p21q11+p22q21)(p21q12+p22q22)]PQ = \begin{bmatrix} (p_{11}q_{11} + p_{12}q_{21}) & (p_{11}q_{12} + p_{12}q_{22}) \\ (p_{21}q_{11} + p_{22}q_{21}) & (p_{21}q_{12} + p_{22}q_{22}) \end{bmatrix} Each element in the product matrix is obtained by taking the dot product of a row from the first matrix and a column from the second matrix. Specifically, the element in the ii-th row and jj-th column of the product matrix is found by multiplying the ii-th row of the first matrix by the jj-th column of the second matrix, element by element, and summing the results.


Problem Setup

We are given a matrix AA as: A=[abba]A = \begin{bmatrix} a & b \\ b & a \end{bmatrix} We are also given that A2A^2 is of the form: A2=[αββα]A^2 = \begin{bmatrix} \alpha & \beta \\ \beta & \alpha \end{bmatrix} Our goal is to calculate A2A^2 by multiplying AA by itself, and then compare the resulting matrix with the given form of A2A^2 to determine the values of α\alpha and β\beta.


Step-by-Step Calculation of A2A^2

To find A2A^2, we need to multiply matrix AA by itself: A2=AA=[abba][abba]A^2 = A \cdot A = \begin{bmatrix} a & b \\ b & a \end{bmatrix} \begin{bmatrix} a & b \\ b & a \end{bmatrix}

Let's calculate each element of the product matrix step-by-step:

  1. Element in the first row, first column (C11C_{11}):

    • Why: To find the element in the first row, first column of the product matrix, we take the dot product of the first row of the first matrix (AA) and the first column of the second matrix (AA).
    • Calculation: C11=(a)(a)+(b)(b)=a2+b2C_{11} = (a)(a) + (b)(b) = a^2 + b^2
  2. Element in the first row, second column (C12C_{12}):

    • Why: To find the element in the first row, second column, we take the dot product of the first row of the first matrix (AA) and the second column of the second matrix (AA).
    • Calculation: C12=(a)(b)+(b)(a)=ab+ba=2abC_{12} = (a)(b) + (b)(a) = ab + ba = 2ab
  3. Element in the second row, first column (C21C_{21}):

    • Why: To find the element in the second row, first column, we take the dot product of the second row of the first matrix (AA) and the first column of the second matrix (AA).
    • Calculation: C21=(b)(a)+(a)(b)=ba+ab=2abC_{21} = (b)(a) + (a)(b) = ba + ab = 2ab
  4. Element in the second row, second column (C22C_{22}):

    • Why: To find the element in the second row, second column, we take the dot product of the second row of the first matrix (AA) and the second column of the second matrix (AA).
    • Calculation: C22=(b)(b)+(a)(a)=b2+a2=a2+b2C_{22} = (b)(b) + (a)(a) = b^2 + a^2 = a^2 + b^2

Now, we assemble these elements to form the matrix A2A^2: A2=[a2+b22ab2aba2+b2]A^2 = \begin{bmatrix} a^2 + b^2 & 2ab \\ 2ab & a^2 + b^2 \end{bmatrix}


Equating Elements and Finding α,β\alpha, \beta

We are given that A2=[αββα]A^2 = \begin{bmatrix} \alpha & \beta \\ \beta & \alpha \end{bmatrix}. By comparing the elements of our calculated A2A^2 with the given form, we can directly find α\alpha and β\beta:

Comparing the element in the first row, first column: α=a2+b2\alpha = a^2 + b^2

Comparing the element in the first row, second column: β=2ab\beta = 2ab

(Note: The elements in the second row, first column and second row, second column also consistently yield β=2ab\beta = 2ab and α=a2+b2\alpha = a^2+b^2 respectively, confirming our results.)


Conclusion and Option Selection

From our calculations, we have found that α=a2+b2\alpha = a^2 + b^2 and β=2ab\beta = 2ab. Matching these values with the given options: (A) α=2ab,β=a2+b2\alpha = 2ab,\,\beta = {a^2} + {b^2} (B) α=a2+b2,β=ab\alpha = {a^2} + {b^2},\,\beta = ab (C) α=a2+b2,β=2ab\alpha = {a^2} + {b^2},\,\beta = 2ab (D) α=a2+b2,β=a2b2\alpha = {a^2} + {b^2},\,\beta = {a^2} - {b^2}

Our derived values match option (C).

The final answer is C\boxed{\text{C}}.


Tips for JEE Aspirants

  1. Master Matrix Multiplication: This is a fundamental operation in matrices. Practice it until it becomes second nature. A common mistake is to multiply element-wise (like regular numbers), which is incorrect for matrix multiplication. Always remember "row by column".
  2. Order Matters: Matrix multiplication is generally not commutative, meaning ABBAAB \neq BA. In this problem, we are squaring a matrix (AAA \cdot A), so the order is fixed.
  3. Recognize Patterns: Notice that the given matrix AA is a symmetric matrix (elements aij=ajia_{ij} = a_{ji}). The result A2A^2 is also symmetric. This can sometimes serve as a quick check for your calculations.
  4. Careful with Algebra: Ensure you correctly sum and multiply the algebraic terms (e.g., ab+ba=2abab+ba=2ab).
  5. Time Management: For "easy" difficulty problems like this, ensure accuracy and speed. Don't rush, but be efficient with your steps.

Summary and Key Takeaway

This problem effectively tests your understanding of basic matrix multiplication. By systematically applying the row-by-column rule for matrix multiplication, we calculated A2A^2 and then compared its elements with the given form to find the values of α\alpha and β\beta. The key takeaway is the precise application of the matrix multiplication definition to correctly compute the elements of the product matrix.

Practice More Matrices & Determinants Questions

View All Questions