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

Question

Let A=[aij]A=\left[a_{i j}\right] be a 3×33 \times 3 matrix such that A[010]=[001],A[413]=[010]A\left[\begin{array}{l}0 \\ 1 \\ 0\end{array}\right]=\left[\begin{array}{l}0 \\ 0 \\ 1\end{array}\right], A\left[\begin{array}{l}4 \\ 1 \\ 3\end{array}\right]=\left[\begin{array}{l}0 \\ 1 \\ 0\end{array}\right] and A[212]=[100]A\left[\begin{array}{l}2 \\ 1 \\ 2\end{array}\right]=\left[\begin{array}{l}1 \\ 0 \\ 0\end{array}\right], then a23a_{23} equals :

Options

Solution

This problem requires a clear understanding of matrix-vector multiplication and how to extract specific matrix elements from given conditions. We will focus on the rows of the matrix that contribute to the desired element.

Key Concept: Matrix-Vector Multiplication

For a 3×33 \times 3 matrix A=(a11a12a13a21a22a23a31a32a33)A = \begin{pmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{pmatrix} and a column vector X=(x1x2x3)X = \begin{pmatrix} x_1 \\ x_2 \\ x_3 \end{pmatrix}, the product AXAX is a column vector Y=(y1y2y3)Y = \begin{pmatrix} y_1 \\ y_2 \\ y_3 \end{pmatrix}, where each element yiy_i is the dot product of the ii-th row of AA with the vector XX. Specifically, for the second row, the second component of the resulting vector YY is given by: y2=a21x1+a22x2+a23x3y_2 = a_{21}x_1 + a_{22}x_2 + a_{23}x_3 Since we need to find a23a_{23}, we will primarily focus on this relationship for the second row of the matrix AA.


Step 1: Use the first condition to find a22a_{22}

The first given condition is A[010]=[001]A\left[\begin{array}{l}0 \\ 1 \\ 0\end{array}\right]=\left[\begin{array}{l}0 \\ 0 \\ 1\end{array}\right]. Let X1=(010)X_1 = \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix} and Y1=(001)Y_1 = \begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix}. Applying the matrix-vector multiplication rule for the second row: a21(0)+a22(1)+a23(0)=y2a_{21}(0) + a_{22}(1) + a_{23}(0) = y_2 From Y1Y_1, we see that y2=0y_2 = 0. So, we have: 0+a22+0=00 + a_{22} + 0 = 0 This directly gives us the value of a22a_{22}: a22=0\mathbf{a_{22} = 0} This is a crucial piece of information that simplifies our subsequent calculations.


Step 2: Use the second condition to form an equation for a21a_{21} and a23a_{23}

The second given condition is A[413]=[010]A\left[\begin{array}{l}4 \\ 1 \\ 3\end{array}\right]=\left[\begin{array}{l}0 \\ 1 \\ 0\end{array}\right]. Let X2=(413)X_2 = \begin{pmatrix} 4 \\ 1 \\ 3 \end{pmatrix} and Y2=(010)Y_2 = \begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix}. Applying the matrix-vector multiplication rule for the second row: a21(4)+a22(1)+a23(3)=y2a_{21}(4) + a_{22}(1) + a_{23}(3) = y_2 From Y2Y_2, we see that y2=1y_2 = 1. Now, substitute the value of a22=0a_{22}=0 that we found in Step 1: 4a21+(0)(1)+3a23=14a_{21} + (0)(1) + 3a_{23} = 1 This simplifies to our first linear equation involving a21a_{21} and a23a_{23}: 4a21+3a23=1(Equation 1)\mathbf{4a_{21} + 3a_{23} = 1 \quad \text{(Equation 1)}}


Step 3: Use the third condition to form another equation for a21a_{21} and a23a_{23}

The third given condition is A[212]=[100]A\left[\begin{array}{l}2 \\ 1 \\ 2\end{array}\right]=\left[\begin{array}{l}1 \\ 0 \\ 0\end{array}\right]. Let X3=(212)X_3 = \begin{pmatrix} 2 \\ 1 \\ 2 \end{pmatrix} and Y3=(100)Y_3 = \begin{pmatrix} 1 \\ 0 \\ 0 \end{pmatrix}. Applying the matrix-vector multiplication rule for the second row: a21(2)+a22(1)+a23(2)=y2a_{21}(2) + a_{22}(1) + a_{23}(2) = y_2 From Y3Y_3, we see that y2=0y_2 = 0. Substitute the value of a22=0a_{22}=0: 2a21+(0)(1)+2a23=02a_{21} + (0)(1) + 2a_{23} = 0 This simplifies to our second linear equation involving a21a_{21} and a23a_{23}: 2a21+2a23=02a_{21} + 2a_{23} = 0 Dividing by 2, we get a simpler relationship: a21+a23=0(Equation 2)\mathbf{a_{21} + a_{23} = 0 \quad \text{(Equation 2)}}


Step 4: Solve the system of equations for a23a_{23}

We now have a system of two linear equations with two variables (a21a_{21} and a23a_{23}):

  1. 4a21+3a23=14a_{21} + 3a_{23} = 1
  2. a21+a23=0a_{21} + a_{23} = 0

From Equation 2, we can easily express a21a_{21} in terms of a23a_{23}: a21=a23a_{21} = -a_{23} Now, substitute this expression for a21a_{21} into Equation 1: 4(a23)+3a23=14(-a_{23}) + 3a_{23} = 1 4a23+3a23=1-4a_{23} + 3a_{23} = 1 a23=1-a_{23} = 1 Multiplying both sides by -1, we find the value of a23a_{23}: a23=1\mathbf{a_{23} = -1}


Summary and Key Takeaway

By systematically applying the definition of matrix-vector multiplication to the second row of the matrix AA for each given condition, we were able to set up a system of linear equations for a21a_{21} and a23a_{23}. Solving this system yielded the value of a23a_{23}. This approach highlights how specific elements of a matrix can be determined from its action on particular vectors.

Tips and Common Mistakes:

  • Focus on the relevant row/column: Since we needed a23a_{23} (an element in the second row), we only needed to consider the second row of the matrix AA and the second component of the resulting vectors. This saves time and avoids unnecessary calculations.
  • Systematic Equation Solving: Be careful when setting up and solving the system of linear equations. A small arithmetic error can lead to a wrong answer.
  • Understanding AeiA \mathbf{e_i}: The first condition A(010)=(001)A\begin{pmatrix}0\\1\\0\end{pmatrix}=\begin{pmatrix}0\\0\\1\end{pmatrix} is particularly useful. Multiplying a matrix AA by the standard basis vector ej\mathbf{e_j} (a vector with 1 in the jj-th position and 0 elsewhere) results in the jj-th column of AA. So, Ae2A\mathbf{e_2} gives the second column of AA, which is (a12a22a32)=(001)\begin{pmatrix}a_{12}\\a_{22}\\a_{32}\end{pmatrix} = \begin{pmatrix}0\\0\\1\end{pmatrix}. This immediately tells us a12=0a_{12}=0, a22=0a_{22}=0, and a32=1a_{32}=1. This is the quickest way to find a22a_{22}.

The final answer is -1\boxed{\text{-1}}.

Practice More Matrices & Determinants Questions

View All Questions