

InterviewSolution
Saved Bookmarks
1. |
Construct a 2 × 3 matrix whose elements are aij = (i - 2j)2/2. |
Answer» It is a (2 x 3) matrix. So, it has 2 rows and 3 columns. Given \(a_{ij}=\frac{(i-2j)^2}{2}\) So, a11 = \(\frac{1}{2},\) a12 = \(\frac{9}{2},\) a13 = \(\frac{25}{3},\) a21 = 0, a22 = 2, a23 = 8 So, the matrix = \(\begin{bmatrix}\frac{1}{2} & \frac{9}{2} & \frac{25}{2} \\[0.3em]0 &2 & 8\\[0.3em]\end{bmatrix}\) Conclusion: Therefore, Matrix is \(\begin{bmatrix}\frac{1}{2} & \frac{9}{2} & \frac{25}{2} \\[0.3em]0 &2 & 8\\[0.3em]\end{bmatrix}\) |
|