Level 1 — RecognitionMatrices & Determinants — Introduction

Matrices & Determinants — Introduction

30 marksprintable — key stays hidden on paper

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 (147258)\begin{pmatrix} 1 & 4 & 7 \\ 2 & 5 & 8 \end{pmatrix} is: (a) 3×23\times 2 (b) 2×32\times 3 (c) 6×16\times 1 (d) 2×22\times 2

Q2. A square matrix AA is called symmetric if: (a) AT=AA^{T}=-A (b) AT=AA^{T}=A (c) A2=AA^{2}=A (d) AT=A1A^{T}=A^{-1}

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 ABAB is defined when AA is m×nm\times n and BB is p×qp\times q only if: (a) m=pm=p (b) n=qn=q (c) n=pn=p (d) m=qm=q

Q5. The determinant of (3214)\begin{pmatrix} 3 & 2 \\ 1 & 4 \end{pmatrix} is: (a) 1010 (b) 1414 (c) 10-10 (d) 1212

Q6. The identity matrix of order 2 is: (a) (0000)\begin{pmatrix}0&0\\0&0\end{pmatrix} (b) (1111)\begin{pmatrix}1&1\\1&1\end{pmatrix} (c) (1001)\begin{pmatrix}1&0\\0&1\end{pmatrix} (d) (1010)\begin{pmatrix}1&0\\1&0\end{pmatrix}

Q7. For a 2×22\times2 matrix A=(abcd)A=\begin{pmatrix}a&b\\c&d\end{pmatrix}, A1A^{-1} exists provided: (a) adbc=0ad-bc=0 (b) adbc0ad-bc\neq0 (c) a=da=d (d) b=cb=c

Q8. A skew-symmetric matrix must have diagonal entries all equal to: (a) 11 (b) each other (c) 00 (d) 1-1

Q9. If kk is a scalar, then det(kA)\det(kA) for a 2×22\times2 matrix AA equals: (a) kdetAk\det A (b) k2detAk^{2}\det A (c) detA\det A (d) 2kdetA2k\det A

Q10. The transpose of (123456)\begin{pmatrix}1&2\\3&4\\5&6\end{pmatrix} has order: (a) 3×23\times2 (b) 2×32\times3 (c) 3×33\times3 (d) 2×22\times2


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) AT=AA^T = -A
(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. AB=BAAB=BA always.

Q13. If detA=0\det A = 0 then the matrix AA has no inverse.

Q14. (AT)T=A(A^{T})^{T}=A for every matrix AA.

Q15. A system AX=BAX=B can be solved by X=A1BX=A^{-1}B even when detA=0\det A=0.

Q16. In Cramer's rule for a 2×22\times2 system, the solution is x=DxDx=\dfrac{D_x}{D} where DD is the determinant of the coefficient matrix.


Answer keyMark scheme & solutions

Section A (1 mark each)

Q1 — (b) 2×32\times3. Order = rows × columns = 2 rows, 3 columns. ✔(1)

Q2 — (b) AT=AA^T=A. Definition of symmetric matrix. ✔(1)

Q3 — (c) same order. Addition is entry-wise, so both dimensions must match. ✔(1)

Q4 — (c) n=pn=p. Inner dimensions must agree; result is m×qm\times q. ✔(1)

Q5 — (a) 1010. det=(3)(4)(2)(1)=122=10\det = (3)(4)-(2)(1)=12-2=10. ✔(1)

Q6 — (c) (1001)\begin{pmatrix}1&0\\0&1\end{pmatrix}. 1's on diagonal, 0 elsewhere. ✔(1)

Q7 — (b) adbc0ad-bc\neq0. Inverse exists iff determinant nonzero. ✔(1)

Q8 — (c) 00. AT=AA^T=-A forces aii=aiiaii=0a_{ii}=-a_{ii}\Rightarrow a_{ii}=0. ✔(1)

Q9 — (b) k2detAk^2\det A. Each of 2 rows scales by kk; det(kA)=kndetA\det(kA)=k^n\det A with n=2n=2. ✔(1)

Q10 — (b) 2×32\times3. Transpose swaps order 3×22×33\times2\to2\times3. ✔(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 = AT=AA^T=-A.

Section C (2 marks each: verdict 1 + reason 1)

Q12 — FALSE. ✔(1) Matrix multiplication is generally non-commutative; order matters, and ABAB may even have different dimensions than BABA. Reason ✔(1)

Q13 — TRUE. ✔(1) The inverse formula divides by detA\det A; if detA=0\det A=0 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) A1A^{-1} does not exist when detA=0\det A=0, so the method fails (no unique solution). Reason ✔(1)

Q16 — TRUE. ✔(1) Cramer's rule: x=Dx/Dx=D_x/D, y=Dy/Dy=D_y/D, where DD is the coefficient-matrix determinant (D0D\neq0). 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)"}
]