

InterviewSolution
1. |
For what value of x, is the matrix A = \( \begin{bmatrix}0&1 & -2 \\[0.3em]-1 & 0 &3 \\[0.3em]x & -3 &0\end{bmatrix}\) a skew-symmetric matrix? |
Answer» We are given that, A =\( \begin{bmatrix}0&1 & -2 \\[0.3em]-1 & 0 &3 \\[0.3em]x & -3 &0\end{bmatrix}\) is a skew-symmetric matrix. We need to find the value of x. Let us understand what skew-symmetric matrix is. A skew-symmetric matrix is a square matrix whose transpose equals its negative, that, it satisfies the condition A skew symmetric matrix ⇔ AT = - A First, let us find –A. - A =-1 x\( \begin{bmatrix}0&1 & -2 \\[0.3em]-1 & 0 &3 \\[0.3em]x & -3 &0\end{bmatrix}\) ⇒ - A =\( \begin{bmatrix}0&-1 & 2 \\[0.3em]1 & 0 &-3 \\[0.3em]-x & 3 &0\end{bmatrix}\) Let us find the transpose of A. We know that the transpose of a matrix is a new matrix whose rows are the columns of the original. In matrix A, 1st row of A = (0 ,1 ,-2) 2nd row of A = (-1 ,0 ,3) 3rd row of A = (x ,-3,0) In the formation of matrix AT, 1st column of AT = 1st row of A = (0 ,1 ,-2) 2nd column of AT = 2nd row of A = (-1,0, 3) 3rd column of AT = 3rd row of A = (x, -3 ,0) So, AT =\( \begin{bmatrix}0&-1 & x \\[0.3em]1 & 0 &-3 \\[0.3em]-2 & 3 &0\end{bmatrix}\) Substituting the matrices –A and AT , we get - A = AT ⇒ \( \begin{bmatrix}0&-1 & 2 \\[0.3em]1 & 0 &-3 \\[0.3em]-x & 3 &0\end{bmatrix}\)= \( \begin{bmatrix}0&-1 & x \\[0.3em]1 & 0 &-3 \\[0.3em]-2 & 3 &0\end{bmatrix}\) We know by the property of matrices, \(\begin{bmatrix} a_{11}& a_{12} \\[0.3em] a_{21} & a_{22} \\[0.3em] \end{bmatrix}\)= \(\begin{bmatrix} b_{11}& b_{12} \\[0.3em] b_{21} & b_{22} \\[0.3em] \end{bmatrix}\) This implies, a11 = b11, a12 = b12, a21 = b21 and a22 = b22 By comparing the corresponding elements of the two matrices, x = 2 Thus, The value of x = 2. |
|