

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