In the matrix A=[[2,5,19,-7],[35,-2,5/2,12],[sqrt3,1,-5,17]], write: (i) the order of the matrix, (ii) the number of elements, (iii) the elements a13, a21, a33, a24, a23.
Hint. Count rows and columns for the order; the number of elements is rows times columns; read each a_ij as row i, column j.
The matrix has 3 rows and 4 columns, so its order is 3x4. The number of elements is 3x4=12. Reading off entries by row and column: a13 (row 1, col 3) = 19; a21 (row 2, col 1) = 35; a33 (row 3, col 3) = -5; a24 (row 2, col 4) = 12; a23 (row 2, col 3) = 5/2.
✦ Order 3x4; 12 elements; a13=19, a21=35, a33=-5, a24=12, a23=5/2.
