Matrices & Determinants — Introduction
Level 4 — Application (Novel Problems, No Hints)
Time: 60 minutes Total Marks: 50
Q1. (10 marks) A matrix of order is defined by
(a) Write out explicitly. (3) (b) Decompose into the sum of a symmetric matrix and a skew-symmetric matrix , where and . (5) (c) State the value of without full expansion, justifying briefly. (2)
Q2. (10 marks) Let and .
(a) Show by direct computation that . (5) (b) Determine whether . If not, compute the matrix . (3) (c) Verify that . (2)
Q3. (10 marks) A cryptographer encodes a message using the key matrix The encoded pair of a letter block is , produced by , where is the original block.
(a) Find . (3) (b) Recover the original block . (4) (c) The cryptographer wants a new key matrix that is NOT invertible so it fails. Give one matrix with entries satisfying that is singular, and justify. (3)
Q4. (10 marks) Consider the system where is a real parameter.
(a) Using Cramer's rule, express and in terms of . (5) (b) For what value of does the system fail to have a unique solution? (2) (c) For that value of , is the system consistent or inconsistent? Justify. (3)
Q5. (10 marks) Let
(a) Compute by cofactor expansion along the first column. (4) (b) Without recomputing from scratch, state and , justifying using determinant properties. (3) (c) A new matrix is obtained from by swapping rows 1 and 3, then multiplying the resulting row 2 by . State with justification. (3)
Answer keyMark scheme & solutions
Q1 (10)
(a) Entries: diagonal ; off-diagonal . (3) Why: , etc.; note is already symmetric here.
(b) (since off-diagonal is symmetric and diagonal is symmetric). So and (zero matrix). (5) Why: Recognizing is symmetric gives immediately (2 for computing , 3 for ).
(c) . Any skew-symmetric matrix has determinant 0 (odd order); here is the zero matrix so trivially . (2)
Q2 (10)
(a) . . , ... recompute: . Matches. (5) Marks: AB (2), transpose (1), (2).
(b) . . . (3)
(c) ; ; product . . Equal. (2)
Q3 (10)
(a) . . (3)
(b) . (4) Check: ✓.
(c) Need with . Example : ; singular hence non-invertible. (Any valid singular example accepted.) (3)
Q4 (10)
(a) Coefficient determinant . ; . (5)
(b) No unique solution when : . (2)
(c) At : equations become , i.e. , and . Left sides equal but : inconsistent (parallel lines, no solution). (3)
Q5 (10)
(a) Expand along column 1: . (4)
(b) (order 3, scalar factor cubed). (transpose preserves determinant). (3)
(c) Row swap multiplies det by ; scaling a row by multiplies by . . (3)
[
{"claim":"Q2 det(AB)=det(A)det(B)=56","code":"A=Matrix([[2,-1],[1,3]]); B=Matrix([[0,4],[-2,1]]); result = ((A*B).det()==A.det()*B.det()) and ((A*B).det()==56)"},
{"claim":"Q3 recovered block x=(5,2)","code":"K=Matrix([[3,2],[1,1]]); x=K.inv()*Matrix([19,7]); result = x==Matrix([5,2])"},
{"claim":"Q4 x,y formulas and D=0 at k=-2/3","code":"k=symbols('k'); D=Matrix([[2,k],[3,-1]]).det(); Dx=Matrix([[5,k],[4,-1]]).det(); Dy=Matrix([[2,5],[3,4]]).det(); result = (simplify(Dx/D - (5+4*k)/(2+3*k))==0) and (simplify(Dy/D - 7/(2+3*k))==0) and (solve(D,k)==[Rational(-2,3)])"},
{"claim":"Q5 det(M)=1, det(2M)=8, det(N)=3","code":"M=Matrix([[1,2,3],[0,1,4],[5,6,0]]); result = (M.det()==1) and ((2*M).det()==8) and (3*M.det()==3)"}
]