Matrices & Determinants — Introduction
Level 1 — Recognition
Time: 20 minutes Total Marks: 30
Section A — Multiple Choice (1 mark each)
Choose the single best answer.
Q1. The order of the matrix is: (a) (b) (c) (d)
Q2. A square matrix is called symmetric if: (a) (b) (c) (d)
Q3. Two matrices can be added only if: (a) they are both square (b) they have the same number of columns only (c) they have the same order (d) the number of columns of the first equals the rows of the second
Q4. The product is defined when is and is only if: (a) (b) (c) (d)
Q5. The determinant of is: (a) (b) (c) (d)
Q6. The identity matrix of order 2 is: (a) (b) (c) (d)
Q7. For a matrix , exists provided: (a) (b) (c) (d)
Q8. A skew-symmetric matrix must have diagonal entries all equal to: (a) (b) each other (c) (d)
Q9. If is a scalar, then for a matrix equals: (a) (b) (c) (d)
Q10. The transpose of has order: (a) (b) (c) (d)
Section B — Matching (1 mark each, 5 marks)
Q11. Match each matrix type in Column X to its defining property in Column Y.
| Column X | Column Y |
|---|---|
| (i) Row matrix | (P) all elements zero |
| (ii) Diagonal matrix | (Q) only one row |
| (iii) Zero matrix | (R) |
| (iv) Identity matrix | (S) non-diagonal elements zero |
| (v) Skew-symmetric | (T) diagonal matrix with all diagonal entries 1 |
Section C — True/False with justification (2 marks each: 1 verdict + 1 reason)
Q12. Matrix multiplication is commutative, i.e. always.
Q13. If then the matrix has no inverse.
Q14. for every matrix .
Q15. A system can be solved by even when .
Q16. In Cramer's rule for a system, the solution is where is the determinant of the coefficient matrix.
Answer keyMark scheme & solutions
Section A (1 mark each)
Q1 — (b) . Order = rows × columns = 2 rows, 3 columns. ✔(1)
Q2 — (b) . Definition of symmetric matrix. ✔(1)
Q3 — (c) same order. Addition is entry-wise, so both dimensions must match. ✔(1)
Q4 — (c) . Inner dimensions must agree; result is . ✔(1)
Q5 — (a) . . ✔(1)
Q6 — (c) . 1's on diagonal, 0 elsewhere. ✔(1)
Q7 — (b) . Inverse exists iff determinant nonzero. ✔(1)
Q8 — (c) . forces . ✔(1)
Q9 — (b) . Each of 2 rows scales by ; with . ✔(1)
Q10 — (b) . Transpose swaps order . ✔(1)
Section B (1 mark each)
Q11: (i)→Q, (ii)→S, (iii)→P, (iv)→T, (v)→R. ✔(5) Reasoning: row matrix = one row; diagonal = off-diagonal zero; zero = all zero; identity = diagonal of 1's; skew-symmetric = .
Section C (2 marks each: verdict 1 + reason 1)
Q12 — FALSE. ✔(1) Matrix multiplication is generally non-commutative; order matters, and may even have different dimensions than . Reason ✔(1)
Q13 — TRUE. ✔(1) The inverse formula divides by ; if the matrix is singular and non-invertible. Reason ✔(1)
Q14 — TRUE. ✔(1) Transposing twice restores original positions of all elements. Reason ✔(1)
Q15 — FALSE. ✔(1) does not exist when , so the method fails (no unique solution). Reason ✔(1)
Q16 — TRUE. ✔(1) Cramer's rule: , , where is the coefficient-matrix determinant (). Reason ✔(1)
[
{"claim":"det of [[3,2],[1,4]] is 10","code":"M=Matrix([[3,2],[1,4]]); result=(M.det()==10)"},
{"claim":"det(kA)=k**2 det A for 2x2","code":"k=symbols('k'); A=Matrix([[symbols('a'),symbols('b')],[symbols('c'),symbols('d')]]); result=simplify((k*A).det()-k**2*A.det())==0"},
{"claim":"transpose of 3x2 has shape 2x3","code":"M=Matrix([[1,2],[3,4],[5,6]]); result=(M.T.shape==(2,3))"},
{"claim":"double transpose returns original","code":"M=Matrix([[1,2,3],[4,5,6]]); result=(M.T.T==M)"}
]