

InterviewSolution
Saved Bookmarks
1. |
For a 2 × 2 matrix A = [aij] whose elements are given by aij =\(\frac{i}{j}\), write the value of a12. |
Answer» We are given with, A matrix of order 2 × 2, A = [aij]. aij = \(\frac{i}{j}\) We need to find the value of a12. Here, If A is of the order 2 × 2 then, Number of rows of A = 2 Number of columns of A = 2 We can easily find the elements using the representation of element, . Compare aij with a12. We get, i = 1 j = 2 Putting these values in aij = \(\frac{i}{j}\), a12 = \(\frac{1}{2}\) Thus, The value of a12 = \(\frac{1}{2}\). |
|