Matrices — Topic Review — Solutions
15 questions covering all Matrices sub-topics: notation, operations, multiplication, determinants, inverses and solving systems. Click Show Solution to reveal full working.
-
Fluency
Matrix M =
. (a) State the order of M. (b) Identify element m12. (c) Identify element m23.1 5 −3 4 0 2 (a) M has 2 rows and 3 columns: order 2 × 3
(b) m12 = element in row 1, column 2 = 5
(c) m23 = element in row 2, column 3 = 2
-
Fluency
Calculate 2A − B where A =
and B =3 −1 0 2 1 4 −2 1 2A =
6 −2 0 4 2A − B =
=6−1 −2−4 0−(−2) 4−1 5 −6 2 3 -
Fluency
Find AB where A =
and B =2 1 0 3 1 2 4 −1 Row 1 of A times columns of B:
c11 = 2(1)+1(4) = 6 c12 = 2(2)+1(−1) = 3
c21 = 0(1)+3(4) = 12 c22 = 0(2)+3(−1) = −3AB =
6 3 12 −3 -
Fluency
Find det(A) for A =
5 2 3 1 det(A) = 5×1 − 2×3 = 5 − 6 = −1
-
Fluency
Find A−1 for A =
3 1 5 2 det(A) = 3×2 − 1×5 = 6 − 5 = 1
A−1 = (1/1)
2 −1 −5 3 -
Understanding
Explain why the matrix
has no inverse. What does this mean when using the matrix method to solve a system?2 4 1 2 det = 2×2 − 4×1 = 4 − 4 = 0. A matrix with determinant 0 is singular and has no inverse. When this is the coefficient matrix for a system of equations, the matrix method cannot be used — the system either has no solution (inconsistent parallel lines) or infinitely many solutions (coincident lines).
-
Understanding
Find the value of k such that
is singular.k 3 2 k For a singular matrix, det = 0: k×k − 3×2 = 0 → k2 − 6 = 0 → k2 = 6 → k = ±√6 ≈ ±2.449
-
Understanding
Solve using the matrix inverse method:
3x + y = 7
x + y = 3A =
, B =3 1 1 1 7 3 det(A) = 3 − 1 = 2. A−1 = ½
1 −1 −1 3 X = ½
= ½7−3 −7+9
=4 2 2 1 x = 2, y = 1
-
Understanding
A 2×2 matrix P has det(P) = 4. What is det(2P)?
For a 2×2 matrix, det(kP) = k2 × det(P).
det(2P) = 22 × 4 = 4 × 4 = 16
Reason: Each element of P is multiplied by 2. The determinant formula ad − bc contains each element exactly once, but since there are 2 elements being scaled in each product, the overall determinant is multiplied by k2 = 4.
-
Understanding
A store tracks stock of 2 products across 2 branches. Opening stock matrix S =
. Sales matrix =30 20 15 25
. Find closing stock. Rows = Products A, B. Columns = Branches 1, 2.12 8 5 10 Closing stock = S − Sales =
=30−12 20−8 15−5 25−10 18 12 10 15 Product A: Branch 1 has 18, Branch 2 has 12. Product B: Branch 1 has 10, Branch 2 has 15.
-
Understanding
Find AB and BA for A =
and B =1 0 2 1
. Is AB = BA?2 1 0 3 AB: c11=2, c12=1, c21=4+0=4, c22=2+3=5 →
2 1 4 5 BA: c11=2+2=4, c12=0+1=1, c21=0+6=6, c22=0+3=3 →
4 1 6 3 AB ≠ BA — matrix multiplication is not commutative in general.
-
Problem Solving
Solve using the matrix method, then verify by substitution:
2x − y = 3
x + 2y = 9A =
, B =2 −1 1 2 3 9 det(A) = 4 − (−1) = 5
A−1 = ⅕
2 1 −1 2 X = ⅕
= ⅕6+9 −3+18
=15 15 3 3 x = 3, y = 3. Verify: 2(3)−3=3 ✓ and 3+2(3)=9 ✓
-
Problem Solving
An event sells adult tickets ($12) and child tickets ($7). 80 tickets were sold for $760. Set up a matrix equation and solve to find how many of each ticket type were sold.
Let a = adult tickets, c = child tickets.
System: a + c = 80 and 12a + 7c = 760
A =
1 1 12 7 det(A) = 7 − 12 = −5
A−1 = −⅕
7 −1 −12 1 X = −⅕
= −⅕560 − 760 −960 + 760
=−200 −200 40 40 40 adult and 40 child tickets. Check: 40+40=80 ✓ and 12(40)+7(40)=480+280=760 ✓
-
Problem Solving
Given A =
and det(A) = 4, find a. Then write down A−1.a 2 1 3 det(A) = 3a − 2(1) = 3a − 2 = 4 → 3a = 6 → a = 2
A =
2 2 1 3 A−1 = ¼
3 −2 −1 2 -
Problem Solving
A coding matrix E =
encodes message M =1 1 0 1
. (a) Find the encoded message EM. (b) The inverse of E is E−1 =5 3
. Decode the message1 −1 0 1
.9 4 (a) EM =
1 1 0 1
=5 3
=5+3 0+3 8 3 (b) Apply E−1 to the encoded message:
1 −1 0 1
=9 4
=9−4 0+4 5 4 Decoded message is [5, 4].